我想从我的应用程序中调用地图应用程序,并在源地址和目标地址上发送一个带有纬度和经度的 URL(用于导航)
如何构建链接?
您应该创建一个实例MKMapItem
并使用该openMapsWithItems:launchOptions:
方法打开地图应用程序。
检查此参考。
对于 iOS 5(你应该考虑放弃对它的支持),我认为格式是:
[NSString stringWithFormat: @"http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f",
currentLocation.latitude, currentLocation.longitude,
destinationLocation.latitude, destinationLocation.longitude];