iOS App內(nèi)部調(diào)起百度地圖衅斩、高德地圖盆顾、騰訊地圖

公司App集成的是百度地圖,然后調(diào)起百度地圖、高德地圖畏梆、騰訊地圖您宪、蘋果地圖進行導航的功能.

一.首先需要在info.plist文件中添加白名單如下:
<key>LSApplicationQueriesSchemes</key>
    <array>
        <string>baidumap</string> //百度
        <string>iosamap</string> //高德
        <string>qqmap</string> //騰訊
    </array>

使用: [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"白名單://"]] 判斷是否安裝白名單里面的App.

二.由于項目繼承的是百度地圖,調(diào)用其他導航會有地理偏差,我們要進行坐標轉(zhuǎn)換,可以使用這個轉(zhuǎn)換工具.
第一種:調(diào)起蘋果自帶的地圖進行導航:

蘋果自帶的地圖不需要設(shè)置白名單,需要設(shè)置終點的經(jīng)緯度就行,需要導入#import <MapKit/MapKit.h>頭文件

//坐標轉(zhuǎn)換
CLLocationCoordinate2D gcj02Coord = [JZLocationConverter bd09ToGcj02:loc];
    //用戶位置
    MKMapItem *currentLoc = [MKMapItem mapItemForCurrentLocation];
    //終點位置
    MKMapItem *toLocation = [[MKMapItem alloc]initWithPlacemark:[[MKPlacemark alloc]initWithCoordinate:gcj02Coord addressDictionary:nil] ];
    toLocation.name = title;
    
    NSArray *items = @[currentLoc,toLocation];
    NSDictionary *dic = @{
                          MKLaunchOptionsDirectionsModeKey : MKLaunchOptionsDirectionsModeDriving,
                          MKLaunchOptionsMapTypeKey : @(MKMapTypeStandard),
                          MKLaunchOptionsShowsTrafficKey : @(YES)
                          };
    [MKMapItem openMapsWithItems:items launchOptions:dic];
第二種:調(diào)起百度地圖進行導航:

可以參考:百度地圖官方文檔 實現(xiàn)如下:

//百度地圖
    if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"baidumap://"]]) {
        NSString *urlString = [[NSString stringWithFormat:@"baidumap://map/direction?origin={{我的位置}}&destination=latlng:%f,%f|name:%@&mode=driving&coord_type=bd09ll",modelData.coordinate.latitude,modelData.coordinate.longitude, modelData.titleName] stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
       [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString: urlString]];
    }

參數(shù)設(shè)置可以參考文檔

第三種:調(diào)起高德地圖進行導航:

可以參考:高德地圖官方文檔 實現(xiàn)如下:

CLLocationCoordinate2D gcj02Coord = [JZLocationConverter bd09ToGcj02:modelData.coordinate];

    float shopLat = gcj02Coord.latitude;
    float shoplng = gcj02Coord.longitude;
    
    //高德地圖
    if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"iosamap://"]]) {
        NSMutableDictionary *gaodeMapDic = [NSMutableDictionary dictionary];
        NSString *urlString = [[NSString stringWithFormat:@"iosamap://path?sourceApplication=%@&backScheme=%@&sname=我的位置&dev=1&t=0&dlat=%f&dlon=%f&dname=%@&dev=0",@"AppName",@"url schemes",shopLat,shoplng, modelData.titleName] stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
       [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString: urlString]];  
    }
第四種:調(diào)起騰訊地圖進行導航:

可以參考:騰訊地圖官方文檔 實現(xiàn)如下:

//騰訊地圖
    if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"qqmap://"]]) {
        NSMutableDictionary *qqMapDic = [NSMutableDictionary dictionary];
        NSString *urlString = [[NSString stringWithFormat:@"qqmap://map/routeplan?from=我的位置&type=drive&tocoord=%f,%f&to=%@",shopLat,shoplng, modelData.titleName] stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
       [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString: urlString]]; 
    }
下面是地理坐標轉(zhuǎn)換工具:

.h

#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>
@interface LocationConverter : NSObject

/**
 *  @brief  世界標準地理坐標(WGS-84) 轉(zhuǎn)換成 中國國測局地理坐標(GCJ-02)<火星坐標>
 *
 *  ####只在中國大陸的范圍的坐標有效,以外直接返回世界標準坐標
 *
 *  @param  location    世界標準地理坐標(WGS-84)
 *
 *  @return 中國國測局地理坐標(GCJ-02)<火星坐標>
 */
+ (CLLocationCoordinate2D)wgs84ToGcj02:(CLLocationCoordinate2D)location;


/**
 *  @brief  中國國測局地理坐標(GCJ-02) 轉(zhuǎn)換成 世界標準地理坐標(WGS-84)
 *
 *  ####此接口有1-2米左右的誤差奠涌,需要精確定位情景慎用
 *
 *  @param  location    中國國測局地理坐標(GCJ-02)
 *
 *  @return 世界標準地理坐標(WGS-84)
 */
+ (CLLocationCoordinate2D)gcj02ToWgs84:(CLLocationCoordinate2D)location;


/**
 *  @brief  世界標準地理坐標(WGS-84) 轉(zhuǎn)換成 百度地理坐標(BD-09)
 *
 *  @param  location    世界標準地理坐標(WGS-84)
 *
 *  @return 百度地理坐標(BD-09)
 */
+ (CLLocationCoordinate2D)wgs84ToBd09:(CLLocationCoordinate2D)location;


/**
 *  @brief  中國國測局地理坐標(GCJ-02)<火星坐標> 轉(zhuǎn)換成 百度地理坐標(BD-09)
 *
 *  @param  location    中國國測局地理坐標(GCJ-02)<火星坐標>
 *
 *  @return 百度地理坐標(BD-09)
 */
+ (CLLocationCoordinate2D)gcj02ToBd09:(CLLocationCoordinate2D)location;


/**
 *  @brief  百度地理坐標(BD-09) 轉(zhuǎn)換成 中國國測局地理坐標(GCJ-02)<火星坐標>
 *
 *  @param  location    百度地理坐標(BD-09)
 *
 *  @return 中國國測局地理坐標(GCJ-02)<火星坐標>
 */
+ (CLLocationCoordinate2D)bd09ToGcj02:(CLLocationCoordinate2D)location;


/**
 *  @brief  百度地理坐標(BD-09) 轉(zhuǎn)換成 世界標準地理坐標(WGS-84)
 *
 *  ####此接口有1-2米左右的誤差宪巨,需要精確定位情景慎用
 *
 *  @param  location    百度地理坐標(BD-09)
 *
 *  @return 世界標準地理坐標(WGS-84)
 */
+ (CLLocationCoordinate2D)bd09ToWgs84:(CLLocationCoordinate2D)location;

@end

.m

#import "LocationConverter.h"
#import <CoreLocation/CoreLocation.h>
#define LAT_OFFSET_0(x,y) -100.0 + 2.0 * x + 3.0 * y + 0.2 * y * y + 0.1 * x * y + 0.2 * sqrt(fabs(x))
#define LAT_OFFSET_1 (20.0 * sin(6.0 * x * M_PI) + 20.0 * sin(2.0 * x * M_PI)) * 2.0 / 3.0
#define LAT_OFFSET_2 (20.0 * sin(y * M_PI) + 40.0 * sin(y / 3.0 * M_PI)) * 2.0 / 3.0
#define LAT_OFFSET_3 (160.0 * sin(y / 12.0 * M_PI) + 320 * sin(y * M_PI / 30.0)) * 2.0 / 3.0

#define LON_OFFSET_0(x,y) 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y + 0.1 * sqrt(fabs(x))
#define LON_OFFSET_1 (20.0 * sin(6.0 * x * M_PI) + 20.0 * sin(2.0 * x * M_PI)) * 2.0 / 3.0
#define LON_OFFSET_2 (20.0 * sin(x * M_PI) + 40.0 * sin(x / 3.0 * M_PI)) * 2.0 / 3.0
#define LON_OFFSET_3 (150.0 * sin(x / 12.0 * M_PI) + 300.0 * sin(x / 30.0 * M_PI)) * 2.0 / 3.0

#define RANGE_LON_MAX 137.8347
#define RANGE_LON_MIN 72.004
#define RANGE_LAT_MAX 55.8271
#define RANGE_LAT_MIN 0.8293
// jzA = 6378245.0, 1/f = 298.3
// b = a * (1 - f)
// ee = (a^2 - b^2) / a^2;
#define jzA 6378245.0
#define jzEE 0.00669342162296594323



@implementation LocationConverter

+ (double)transformLat:(double)x bdLon:(double)y
{
    double ret = LAT_OFFSET_0(x, y);
    ret += LAT_OFFSET_1;
    ret += LAT_OFFSET_2;
    ret += LAT_OFFSET_3;
    return ret;
}

+ (double)transformLon:(double)x bdLon:(double)y
{
    double ret = LON_OFFSET_0(x, y);
    ret += LON_OFFSET_1;
    ret += LON_OFFSET_2;
    ret += LON_OFFSET_3;
    return ret;
}

+ (BOOL)outOfChina:(double)lat bdLon:(double)lon
{
    if (lon < RANGE_LON_MIN || lon > RANGE_LON_MAX)
        return true;
    if (lat < RANGE_LAT_MIN || lat > RANGE_LAT_MAX)
        return true;
    return false;
}

+ (CLLocationCoordinate2D)gcj02Encrypt:(double)ggLat bdLon:(double)ggLon
{
    CLLocationCoordinate2D resPoint;
    double mgLat;
    double mgLon;
    if ([self outOfChina:ggLat bdLon:ggLon]) {
        resPoint.latitude = ggLat;
        resPoint.longitude = ggLon;
        return resPoint;
    }
    double dLat = [self transformLat:(ggLon - 105.0)bdLon:(ggLat - 35.0)];
    double dLon = [self transformLon:(ggLon - 105.0) bdLon:(ggLat - 35.0)];
    double radLat = ggLat / 180.0 * M_PI;
    double magic = sin(radLat);
    magic = 1 - jzEE * magic * magic;
    double sqrtMagic = sqrt(magic);
    dLat = (dLat * 180.0) / ((jzA * (1 - jzEE)) / (magic * sqrtMagic) * M_PI);
    dLon = (dLon * 180.0) / (jzA / sqrtMagic * cos(radLat) * M_PI);
    mgLat = ggLat + dLat;
    mgLon = ggLon + dLon;
    
    resPoint.latitude = mgLat;
    resPoint.longitude = mgLon;
    return resPoint;
}

+ (CLLocationCoordinate2D)gcj02Decrypt:(double)gjLat gjLon:(double)gjLon {
    CLLocationCoordinate2D  gPt = [self gcj02Encrypt:gjLat bdLon:gjLon];
    double dLon = gPt.longitude - gjLon;
    double dLat = gPt.latitude - gjLat;
    CLLocationCoordinate2D pt;
    pt.latitude = gjLat - dLat;
    pt.longitude = gjLon - dLon;
    return pt;
}

+ (CLLocationCoordinate2D)bd09Decrypt:(double)bdLat bdLon:(double)bdLon
{
    CLLocationCoordinate2D gcjPt;
    double x = bdLon - 0.0065, y = bdLat - 0.006;
    double z = sqrt(x * x + y * y) - 0.00002 * sin(y * M_PI);
    double theta = atan2(y, x) - 0.000003 * cos(x * M_PI);
    gcjPt.longitude = z * cos(theta);
    gcjPt.latitude = z * sin(theta);
    return gcjPt;
}

+(CLLocationCoordinate2D)bd09Encrypt:(double)ggLat bdLon:(double)ggLon
{
    CLLocationCoordinate2D bdPt;
    double x = ggLon, y = ggLat;
    double z = sqrt(x * x + y * y) + 0.00002 * sin(y * M_PI);
    double theta = atan2(y, x) + 0.000003 * cos(x * M_PI);
    bdPt.longitude = z * cos(theta) + 0.0065;
    bdPt.latitude = z * sin(theta) + 0.006;
    return bdPt;
}


+ (CLLocationCoordinate2D)wgs84ToGcj02:(CLLocationCoordinate2D)location
{
    return [self gcj02Encrypt:location.latitude bdLon:location.longitude];
}

+ (CLLocationCoordinate2D)gcj02ToWgs84:(CLLocationCoordinate2D)location
{
    return [self gcj02Decrypt:location.latitude gjLon:location.longitude];
}


+ (CLLocationCoordinate2D)wgs84ToBd09:(CLLocationCoordinate2D)location
{
    CLLocationCoordinate2D gcj02Pt = [self gcj02Encrypt:location.latitude
                                                  bdLon:location.longitude];
    return [self bd09Encrypt:gcj02Pt.latitude bdLon:gcj02Pt.longitude] ;
}

+ (CLLocationCoordinate2D)gcj02ToBd09:(CLLocationCoordinate2D)location
{
    return  [self bd09Encrypt:location.latitude bdLon:location.longitude];
}

+ (CLLocationCoordinate2D)bd09ToGcj02:(CLLocationCoordinate2D)location
{
    return [self bd09Decrypt:location.latitude bdLon:location.longitude];
}

+ (CLLocationCoordinate2D)bd09ToWgs84:(CLLocationCoordinate2D)location
{
    CLLocationCoordinate2D gcj02 = [self bd09ToGcj02:location];
    return [self gcj02Decrypt:gcj02.latitude gjLon:gcj02.longitude];
}

@end

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末溜畅,一起剝皮案震驚了整個濱河市捏卓,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌达皿,老刑警劉巖天吓,帶你破解...
    沈念sama閱讀 216,372評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異峦椰,居然都是意外死亡龄寞,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,368評論 3 392
  • 文/潘曉璐 我一進店門汤功,熙熙樓的掌柜王于貴愁眉苦臉地迎上來物邑,“玉大人,你說我怎么就攤上這事滔金∩猓” “怎么了?”我有些...
    開封第一講書人閱讀 162,415評論 0 353
  • 文/不壞的土叔 我叫張陵餐茵,是天一觀的道長科阎。 經(jīng)常有香客問我,道長忿族,這世上最難降的妖魔是什么锣笨? 我笑而不...
    開封第一講書人閱讀 58,157評論 1 292
  • 正文 為了忘掉前任蝌矛,我火速辦了婚禮,結(jié)果婚禮上错英,老公的妹妹穿的比我還像新娘入撒。我一直安慰自己,他們只是感情好椭岩,可當我...
    茶點故事閱讀 67,171評論 6 388
  • 文/花漫 我一把揭開白布茅逮。 她就那樣靜靜地躺著,像睡著了一般判哥。 火紅的嫁衣襯著肌膚如雪献雅。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 51,125評論 1 297
  • 那天姨伟,我揣著相機與錄音惩琉,去河邊找鬼豆励。 笑死夺荒,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的良蒸。 我是一名探鬼主播技扼,決...
    沈念sama閱讀 40,028評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼嫩痰!你這毒婦竟也來了剿吻?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,887評論 0 274
  • 序言:老撾萬榮一對情侶失蹤串纺,失蹤者是張志新(化名)和其女友劉穎丽旅,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體纺棺,經(jīng)...
    沈念sama閱讀 45,310評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡榄笙,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,533評論 2 332
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了祷蝌。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片茅撞。...
    茶點故事閱讀 39,690評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖巨朦,靈堂內(nèi)的尸體忽然破棺而出米丘,到底是詐尸還是另有隱情,我是刑警寧澤糊啡,帶...
    沈念sama閱讀 35,411評論 5 343
  • 正文 年R本政府宣布拄查,位于F島的核電站,受9級特大地震影響棚蓄,放射性物質(zhì)發(fā)生泄漏堕扶。R本人自食惡果不足惜腺毫,卻給世界環(huán)境...
    茶點故事閱讀 41,004評論 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望挣柬。 院中可真熱鬧潮酒,春花似錦、人聲如沸邪蛔。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,659評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽侧到。三九已至勃教,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間匠抗,已是汗流浹背故源。 一陣腳步聲響...
    開封第一講書人閱讀 32,812評論 1 268
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留汞贸,地道東北人绳军。 一個月前我還...
    沈念sama閱讀 47,693評論 2 368
  • 正文 我出身青樓,卻偏偏與公主長得像矢腻,于是被迫代替她去往敵國和親门驾。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 44,577評論 2 353

推薦閱讀更多精彩內(nèi)容