【发布时间】:2016-01-13 07:54:41
【问题描述】:
我想用修改后的标记和详细信息打开我的纬度和经度值。所以我需要检查是否安装了谷歌地图应用程序,我需要打开它,否则我将导航到苹果地图。
这里我无法使用以下代码添加自定义引脚,
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"maps.apple.com/?z=12&q=%f,%f",[latitude floatValue],[longitude floatValue]]];
if (![[UIApplication sharedApplication] canOpenURL:url]) {
NSLog(@"Google Maps app is not installed");
//left as an exercise for the reader: open the Google Maps mobile website instead!
MKPlacemark *placemark = [[MKPlacemark alloc] initWithCoordinate:rdOfficeLocation addressDictionary:nil];
MKMapItem *item = [[MKMapItem alloc] initWithPlacemark:placemark];
item.name = [NSString stringWithFormat:@"%@",[[mDataArray1 objectAtIndex:indexPath.row] valueForKey:@"NAME"]];
item.phoneNumber = [NSString stringWithFormat:@"%@",[[mDataArray1 objectAtIndex:indexPath.row] valueForKey:@"DESTINATION"]];
[item openInMapsWithLaunchOptions:nil];
} else {
[[UIApplication sharedApplication] openURL:url];
}
所以请帮我为苹果和谷歌地图添加自定义引脚值。
【问题讨论】:
标签: objective-c google-maps mapkit xcode7 ios9.1