我试图在
Swift应用程序(iOS 8目标)中显示A点和B点之间的所有可能路线.我允许用户在我的应用程序中选择任何一种可能的路线.接下来,我希望用户能够使用Apple Maps应用程序中的所选路线(MKRoute)
var fullRouteResponse:MKDirectionsResponse? //This variable has MKRoute information @IBAction func openInAppleMaps(sender: AnyObject) { let placemark = MKPlacemark(coordinate: destinationCoordinate!,addressDictionary: nil) mapItem = MKMapItem(placemark: placemark) mapItem.openInMapsWithLaunchOptions( [MKLaunchOptionsDirectionsModeKey: MKLaunchOptionsDirectionsModeDriving,MKLaunchOptionsMapTypeKey: MKMapType.Standard.rawValue,MKLaunchOptionsShowsTrafficKey: true ]) }
这会打开“地图”应用程序,但是我无法弄清楚如何传递特定的选定的MKRoute信息,以便用户不必在Apple地图应用程序中从所有可能的路线重新选择.
我不知道这是否可能,所以任何指针都会真的有帮助.谢谢!
解决方法
在
documentation不要说可以通过预先配置的路径到原生地图应用程序.所以这是不可能做你想要的.
如果这里没有文件的方式来实现,我想知道.