iOS地圖上WGS84、GCJ-02、BD-09互轉解決方案

來源:互聯網
上載者:User

iOS地圖上WGS84、GCJ-02、BD-09互轉解決方案

近來開發的項目涉及地圖位置分享模組,android組的同事先開工,用的是百度地圖sdk,本人後面開工,用的是iOS SDK的mapkit做,之後問題來了,同一個經緯度座標在iOS端和Android端出現了比較大偏差。查了下資料蘋果地圖在大陸的資料來源是高德的,查了下高德採用GCJ-02, 百度map sdk 採用的是BD-09,只好寫了個類在發送和接收時做好轉換,略微蛋疼。Github上有人寫了一個現成的轉換類,可以參考參考傳送門 ,其主要代碼見下:

標頭檔:

 

#import #import @interface JZLocationConverter : NSObject/** *@brief世界標準地理座標(WGS-84) 轉換成 中國國測局地理座標(GCJ-02)<火星座標> * *  ####只在中國大陸的範圍的座標有效,以外直接返回世界標準座標 * *@param location 世界標準地理座標(WGS-84) * *@return中國國測局地理座標(GCJ-02)<火星座標> */+ (CLLocationCoordinate2D)wgs84ToGcj02:(CLLocationCoordinate2D)location;/** *@brief中國國測局地理座標(GCJ-02) 轉換成 世界標準地理座標(WGS-84) * *  ####此介面有1-2米左右的誤差,需要精確定位情景慎用 * *@param location 中國國測局地理座標(GCJ-02) * *@return世界標準地理座標(WGS-84) */+ (CLLocationCoordinate2D)gcj02ToWgs84:(CLLocationCoordinate2D)location;/** *@brief世界標準地理座標(WGS-84) 轉換成 百度地理座標(BD-09) * *@param location 世界標準地理座標(WGS-84) * *@return百度地理座標(BD-09) */+ (CLLocationCoordinate2D)wgs84ToBd09:(CLLocationCoordinate2D)location;/** *@brief中國國測局地理座標(GCJ-02)<火星座標> 轉換成 百度地理座標(BD-09) * *@param location 中國國測局地理座標(GCJ-02)<火星座標> * *@return百度地理座標(BD-09) */+ (CLLocationCoordinate2D)gcj02ToBd09:(CLLocationCoordinate2D)location;/** *@brief百度地理座標(BD-09) 轉換成 中國國測局地理座標(GCJ-02)<火星座標> * *@param location 百度地理座標(BD-09) * *@return中國國測局地理座標(GCJ-02)<火星座標> */+ (CLLocationCoordinate2D)bd09ToGcj02:(CLLocationCoordinate2D)location;/** *@brief百度地理座標(BD-09) 轉換成 世界標準地理座標(WGS-84) * *  ####此介面有1-2米左右的誤差,需要精確定位情景慎用 * *@param location 百度地理座標(BD-09) * *@return世界標準地理座標(WGS-84) */+ (CLLocationCoordinate2D)bd09ToWgs84:(CLLocationCoordinate2D)location;@end

實現檔案

 

 

#import JZLocationConverter.h#import #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 JZLocationConverter+ (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

測試案例:

 

 

    CLLocationCoordinate2D gcj02 = CLLocationCoordinate2DMake(114.21892734521,29.575429778924);    CLLocationCoordinate2D bd09 = [JZLocationConverter gcj02ToBd09:gcj02];    NSLog(@%f,%f, bd09.latitude, bd09.longitude);     // http://developer.baidu.com/map/index.php?title=webapi/guide/changeposition    // JZLocationConverter 測試資料: 114.21892734521,29.575429778924  ; 轉化結果: 114.224960,29.581853    // 百度api  測試資料: 114.21892734521,29.575429778924  ; 百度api轉換結果: 114.22539195429,29.581585367458

總體來說,存在一點偏差,但跟處理前的效果比一下,相對可以接受了些。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.