适用于ios的Google地图导航选项

时间:2016-08-24 15:37:35

标签: ios dictionary

我如何在谷歌地图iOS源和目的地上显示内置导航选项以及使用语音导航,或者我必须为此实现谷歌地图API?

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码;它会出现带有删除注释的选定位置;从谷歌应用程序,您可以导航

https://developers.google.com/maps/documentation/ios-sdk/urlscheme

 if ([[UIApplication sharedApplication] canOpenURL:[NSURL
URLWithString:@"comgooglemaps://"]])
 {

NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"comgooglemaps://?center=%f,%f&q=%f,%f",mosqueLocation.latitude,mosqueLocation.longitude, mosqueLocation.latitude,mosqueLocation.longitude]];
  [[UIApplication sharedApplication] openURL:url];
} else {
  NSLog(@"Can't use comgooglemaps://");
}