- 百度坐標轉高德坐標
+ (CLLocationCoordinate2D)GCJ02FromBD09:(CLLocationCoordinate2D)coor{
CLLocationDegrees x_pi =3.141592653589793243000.0/180.0;
CLLocationDegrees x = coor.longitude -0.0065, y = coor.latitude -0.006;
CLLocationDegrees z =sqrt(x * x + y * y) -0.00002sin(y * x_pi);
CLLocationDegrees theta =atan2(y, x) -0.000003*cos(x * x_pi);
CLLocationDegrees gg_lon = z *cos(theta);
CLLocationDegrees gg_lat = z *sin(theta);
returnCLLocationCoordinate2DMake(gg_lat, gg_lon);
} - 高德坐標轉百度坐標
+ (CLLocationCoordinate2D)BD09FromGCJ02: (CLLocationCoordinate2D)coor{
CLLocationDegrees x_pi =3.141592653589793243000.0/180.0;
CLLocationDegrees x = coor.longitude, y = coor.latitude;
CLLocationDegrees z =sqrt(x * x + y * y) +0.00002sin(y * x_pi);
CLLocationDegrees theta =atan2(y, x) +0.000003*cos(x * x_pi);
CLLocationDegrees bd_lon = z *cos(theta) +0.0065;
CLLocationDegrees bd_lat = z *sin(theta) +0.006;
return CLLocationCoordinate2DMake(bd_lat, bd_lon);
}
百度地圖坐標與蘋果自帶地圖經緯度之間的相互轉換方法
最后編輯于 :
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
- 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發上,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...
推薦閱讀更多精彩內容
- // // coordinatesChangeHelper.h //// Created by 冰淚 on 201...
- #import<CoreLocation/CoreLocation.h> CLLocation類擴展 */ @in...