使用纬度和经度打开iOS地图

前端之家收集整理的这篇文章主要介绍了使用纬度和经度打开iOS地图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用这个代码打开地图应用程序
NSString* versionNum = [[UIDevice currentDevice] systemVersion];
    NSString *nativeMapScheme = @"maps.apple.com";
    if ([versionNum compare:@"6.0" options:NSNumericSearch] == NSOrderedAscending){
        nativeMapScheme = @"maps.google.com";
    }
    NSString* url = [NSString stringWithFormat:@"http://%@/maps?ll=%f,%f",nativeMapScheme,40.739490,-73.991154];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];

看来它的效果很好,但是这个位置上没有引脚.如何添加引脚,我想在请求中有其他参数?

解决方法

如果您希望将引脚放置在Apple的Google Maps应用程序上,请在URL中使用“q”而不是“ll”.

你可以这样使用

NSString* url = [NSString stringWithFormat:@"http://%@/maps?q=%f,-73.991154];

猜你在找的iOS相关文章