1

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

如何构建链接?

4

1 回答 1

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];
于 2013-08-19T06:18:06.413 回答