以前,在iOS应用中,您可以使用Google地图网址计划(http:maps.google.whatever.whatever)在应用内启动地图应用。
有谁知道iOS 6.0地图应用的新网址方案是什么?我找不到任何关于此的新文档。
答案 0 :(得分:2)
您需要使用MKMapItem打开地图应用程序。请查看文档:{{3}}
以下是如何使用它:
MKMapItem *mapItem=[[MKMapItem alloc] initWithPlacemark:yourPlacemark];
[mapItem openInMapsWithLaunchOptions:@{MKLaunchOptionsMapTypeKey : @(yourMapType), MKLaunchOptionsShowsTrafficKey : @(yourTraffic), MKLaunchOptionsDirectionsModeKey : yourDirectionMode}];
答案 1 :(得分:2)
虽然使用MKMapItem
可以获得更多控制权,但URL方案要容易得多。它没有太大变化,你只需用apple.com取代google.com即可。 Here's the documentation