具有特定位置的 MKMap项目



如何启动iOS6的默认地图应用程序并向其传递自定义位置?

例如:

[[MKMapItem setLocation:MyLocation] openInMapsWithLaunchOptions:nil];

我按照这里的例子,但无法弄清楚。如何从我自己的本机应用程序中启动谷歌地图iPhone应用程序?

下面是使用自定义位置打开地图本机应用程序的代码:

double latitude = 35.0;
double longitude = 1.0;
MKPlacemark *placemark = [[[MKPlacemark alloc] initWithCoordinate:CLLocationCoordinate2DMake(latitude, longitude) addressDictionary:nil] autorelease];
MKMapItem *mapItem = [[[MKMapItem alloc] initWithPlacemark:placemark] autorelease];
[mapItem setName:@"Name of your location"];
[mapItem openInMapsWithLaunchOptions:nil];

相关内容

  • 没有找到相关文章

最新更新