我想从我的应用程序调用地图应用程序,并在源地址和目的地地址(用于导航)上发送带有纬度和经度的网址
如何构建链接?
答案 0 :(得分:2)
您应该创建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];