iOS百度、高德、谷歌、腾讯、苹果地图任意跳转

导航

目标

检测手机上安装的地图APP进行导航

功能实现

  • 依次判断手机是否安装如下地图软件,检查到安装则跳转
    1、百度 地图
    2、高德地图
    3、腾讯地图
    4、谷歌地图
    5、苹果地图
配置白名单
<key>LSApplicationQueriesSchemes</key>
    <array>
        <string>baidumap</string>
        <string>iosamap</string>
        <string>comgooglemaps</string>
        <string>qqmap</string>
    </array>
#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>
#import <MapKit/MapKit.h>

@interface MapNavigationTool : NSObject

+ (NSArray *)mapNavigationdestinationCoor:(CLLocationCoordinate2D)destinationCoor
                          destinationName:(NSString *)destinationName
                          ismapNavigation:(BOOL)ismapNavigation;

@end

/** 导航 usercoor:(CLLocationCoordinate2D)usercoor  */
+ (NSArray *)mapNavigationdestinationCoor:(CLLocationCoordinate2D)destinationCoor
                          destinationName:(NSString *)destinationName
                          ismapNavigation:(BOOL)ismapNavigation
{
    NSMutableArray *maps = [NSMutableArray array];
    NSMutableDictionary *mapDic = [NSMutableDictionary dictionary];

    if (!destinationName && destinationName.length == 0) {

        destinationName = @"终点";
    }

    //苹果地图
    NSMutableDictionary*iosMapDic = [NSMutableDictionary dictionary];
    iosMapDic[@"title"] = @"苹果地图";
    [maps addObject:iosMapDic];

    //百度地图
    if([[UIApplication sharedApplication]canOpenURL:[NSURL URLWithString:@"baidumap://"]]) {

        NSMutableDictionary*baiduMapDic = [NSMutableDictionary dictionary];

        baiduMapDic[@"title"] = @"百度地图";

        /** 参数说明
         origin={{我的位置}} 这个是不能被修改的 不然无法把出发位置设置为当前位置

         destination=latlng:%f,%f|name=目的地
         name=XXXX name这个字段不能省略 否则导航会失败 而后面的文字则可以随便填
         coord_type=gcj02
         coord_type允许的值为bd09ll、gcj02、wgs84 如果你APP的地图SDK用的是百度地图SDK 请填bd09ll 否则 就填gcj02 wgs84你基本是用不上了(关于地图加密这里也不多谈 请自行学习)
         */

        NSString*urlString = [[NSString stringWithFormat:@"baidumap://map/direction?origin={{我的位置}}&destination=latlng:%f,%f|name=%@&mode=driving&coord_type=bd09ll",destinationCoor.latitude,destinationCoor.longitude, destinationName] stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];

        baiduMapDic[@"url"] = urlString;
        [mapDic setValue:urlString forKey:@"百度地图"];

        [maps addObject:baiduMapDic];
    }

    //高德地图
    if([[UIApplication sharedApplication]canOpenURL:[NSURL URLWithString:@"iosamap://"]]) {

        NSMutableDictionary*gaodeMapDic = [NSMutableDictionary dictionary];

        gaodeMapDic[@"title"] = @"高德地图";

        NSString *applicationName = [self getAppName];
        NSString *applicationScheme = [self getAppURLScheme];

        /** 参数说明
         sourceApplication=%@&backScheme=%@
         sourceApplication代表你自己APP的名称 会在之后跳回的时候显示出来 所以必须填写 backScheme是你APP的URL Scheme 不填是跳不回来的哟
         dev=0
         这里填0就行了 跟上面的gcj02一个意思 1代表wgs84 也用不上
         */
        NSString*urlString = [[NSString stringWithFormat:@"iosamap://navi?sourceApplication=%@&backScheme=%@&poiname=%@&poiid=BGVIS&lat=%f&lon=%f&dev=0&style=2",applicationName,applicationScheme,destinationName,destinationCoor.latitude,destinationCoor.longitude] stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];

        gaodeMapDic[@"url"] = urlString;
        [mapDic setValue:urlString forKey:@"高德地图"];
        [maps addObject:gaodeMapDic];
    }

    //腾讯地图
    if([[UIApplication sharedApplication]canOpenURL:[NSURL URLWithString:@"qqmap://"]]) {

        NSMutableDictionary*qqMapDic = [NSMutableDictionary dictionary];

        qqMapDic[@"title"] = @"腾讯地图";

        /** 参数说明 http://lbs.qq.com/uri_v1/guide-route.html */
        NSString*urlString = [[NSString stringWithFormat:@"qqmap://map/routeplan?from=我的位置&type=drive&tocoord=%f,%f&to=%@&coord_type=1&policy=0",destinationCoor.latitude, destinationCoor.longitude, destinationName]stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];

        qqMapDic[@"url"] = urlString;
        [mapDic setValue:urlString forKey:@"腾讯地图"];
        [maps addObject:qqMapDic];
    }

    //谷歌地图
    if([[UIApplication sharedApplication]canOpenURL:[NSURL URLWithString:@"comgooglemaps://"]]) {

        NSMutableDictionary*googleMapDic = [NSMutableDictionary dictionary];

        googleMapDic[@"title"] = @"谷歌地图";
        NSString *applicationName = [self getAppName];
        NSString *applicationScheme = [self getAppURLScheme];
        /** 
         x-source=%@&x-success=%@
         跟高德一样 这里分别代表APP的名称和URL Scheme
         saddr=
         这里留空则表示从当前位置触发 */
        NSString*urlString = [[NSString stringWithFormat:@"comgooglemaps://?x-source=%@&x-success=%@&saddr=&daddr=%f,%f&directionsmode=driving",applicationName,applicationScheme,destinationCoor.latitude, destinationCoor.longitude]stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];

        googleMapDic[@"url"] = urlString;
        [mapDic setValue:urlString forKey:@"谷歌地图"];
        [maps addObject:googleMapDic];
    }

    if (ismapNavigation) {

        NSArray *titles = mapDic.allKeys;
        if ([titles containsObject:@"百度地图"]) {

            [MapNavigationTool wakeupTheMapNavigation:mapDic[@"百度地图"]];
        }else if ([titles containsObject:@"高德地图"]) {

            [MapNavigationTool wakeupTheMapNavigation:mapDic[@"高德地图"]];
        }else if ([titles containsObject:@"腾讯地图"]) {

            [MapNavigationTool wakeupTheMapNavigation:mapDic[@"腾讯地图"]];
        }else if ([titles containsObject:@"谷歌地图"]) {

            [MapNavigationTool wakeupTheMapNavigation:mapDic[@"谷歌地图"]];
        }else {

            MKMapItem *currentLoc = [MKMapItem mapItemForCurrentLocation];
            MKMapItem *toLocation = [[MKMapItem alloc] initWithPlacemark:[[MKPlacemark alloc] initWithCoordinate:destinationCoor addressDictionary:nil]];
            currentLoc.name = @"我的位置";
            toLocation.name = destinationName;
            NSArray *items = @[currentLoc,toLocation];
            NSDictionary *dic = @{
                                  MKLaunchOptionsDirectionsModeKey : MKLaunchOptionsDirectionsModeDriving,
                                  MKLaunchOptionsMapTypeKey : @(MKMapTypeStandard),
                                  MKLaunchOptionsShowsTrafficKey : @(YES)
                                  };

            [MKMapItem openMapsWithItems:items launchOptions:dic];
        }
    }
    
    return maps;
}

+ (void)wakeupTheMapNavigation:(NSString *)urlString
{
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];
}

/** 获取 bundle version版本号 */
+ (NSString *)getLocalAppVersion
{
    return [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
}

/** 获取BundleID */
+ (NSString *)getAppBundleIdentifier
{
    return [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString *)kCFBundleIdentifierKey];
}

/** 获取编译版本号 */
+ (NSString *)getAppBuildNumber
{
    return [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString *)kCFBundleVersionKey];
}

/** 获取AppName */
+ (NSString *)getAppName
{
    return [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString *)kCFBundleNameKey];
}

+ (NSString *)getAppURLScheme
{
    NSArray *URLSchemes = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleURLTypes"];

    //NSLog(@"URLScheme : %@", URLSchemes);
    NSDictionary *dict = [URLSchemes firstObject];
    NSArray *schemes = dict[@"CFBundleURLSchemes"];
    NSString *scheme = [schemes firstObject];

    return scheme;
}

留作笔记,非原创,上面内容网上一大摞
源码下载

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容