目前国内主要有以下三种坐标系:
1. wgs84:为一种大地坐标系,也是目前广泛使用的gps全球卫星定位系统使用的坐标系。
2. gcj02:表示经过国测局加密的坐标。
3. bd09:为百度坐标系,其中bd09ll表示百度经纬度坐标,bd09mc表示百度墨卡托米制坐标。
百度android全景sdk接口和功能目前支持bd09坐标,因此开发者在使用全景sdk的接口和功能时,都需要将wgs84坐标或gcj02坐标转换为bd09坐标。
开发者可以通过百度android全景sdk提供的接口进行转换,注意:请勿使用其他非官方转换方法!!!
android全景sdk坐标转换方法如下
gcj02转换为百度经纬度:
resultpointll =coordinateconverter.converter(coor_type.coor_type_gcj02, sourcepoint);
wgs84转换为百度经纬度:
resultpointll =coordinateconverter.converter(coor_type.coor_type_wgs84, sourcepoint);
百度经纬度转换为百度墨卡托:
resultpointmc =coordinateconverter.llconverter2mc(resultpointll.x, resultpointll.y);
上一篇
下一篇
本篇文章对您是否有帮助?