使用地图和标记图钉

时间:2016-01-13 07:54:42

标签: objective-c google-maps mapkit xcode7 ios9.1

我想用修改后的标记和细节打开我的纬度和经度值。因此,我需要检查是否安装了谷歌地图应用程序,我需要打开,否则我将导航到苹果地图。

这里我无法使用以下代码添加自定义引脚

        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];

        }

所以请帮我添加苹果和谷歌地图的自定义图钉值。

1 个答案:

答案 0 :(得分:0)

您可以查看如何在官方文档中添加custom marker。但是,这仅适用于Google地图,而不适用于Apple地图(在这种情况下,您需要使用不同的库)