求一个好用的火星坐标转百度坐标的api。
不知道你用的那种语言反正算法是类似的,以下是oc代码可以。
//火星坐标转百度坐标
-(CLLocationCoordinate2D)MarsToBaidu:(CLLocationCoordinate2D)coordinate
{
double x = coordinate.latitude;
double y = coordinate.longitude;
double z = sqrt(x * x + y * y) + 0.00002 * sin(y * x_pi);
double theta = atan2(y, x) + 0.000003 * cos(x * x_pi);
coordinate.latitude = z * cos(theta)+0.0065;
coordinate.longitude = z * sin(theta)+0.006;
return coordinate;
}
api地址:http://lbsyun.baidu.com/jsdem...
首先肯定的初始化地图:
var map = new BMap.Map("allmap");
//....
var ggPoint = new BMap.Point(lng,lat);
translateCallback = function (data){
};
setTimeout(function(){
最后,请不要复制粘贴,因为我就是直接从项目上复制过来的。。。。。。