使用纬度和经度使用导航调用maps.app(Apple地图)

时间:2013-08-19 06:11:37

标签: objective-c apple-maps

我想从我的应用程序调用地图应用程序,并在源地址和目的地地址(用于导航)上发送带有纬度和经度的网址

如何构建链接?

1 个答案:

答案 0 :(得分:2)

您应该创建MKMapItem的实例并使用openMapsWithItems:launchOptions:方法打开地图应用。

检查this reference


对于iOS 5(您应考虑放弃支持),我认为格式为:

[NSString stringWithFormat: @"http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f",
                currentLocation.latitude, currentLocation.longitude,
                destinationLocation.latitude, destinationLocation.longitude];