求一个好用的火星坐标转百度坐标的api。

发布于 2022-09-04 19:11:17 字数 27 浏览 10 评论 0

求一个好用的火星坐标转百度坐标的api。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

许一世地老天荒 2022-09-11 19:11:17

api地址:http://lbsyun.baidu.com/jsdem...

首先肯定的初始化地图:
var map = new BMap.Map("allmap");
//....
var ggPoint = new BMap.Point(lng,lat);
translateCallback = function (data){

if(data.status === 0) {
    mui.alert("坐标转换后的经纬度:" + data.points[0].lng + " " +data.points[0].lat);
    var marker = new BMap.Marker(data.points[0]);;
    //var marker = new BMap.Marker(point);  
    map.addOverlay(marker);
}

};

setTimeout(function(){

var convertor = new BMap.Convertor();
var pointArr = [];
pointArr.push(ggPoint);
convertor.translate(pointArr, 1, 5, translateCallback)}, 1000);

最后,请不要复制粘贴,因为我就是直接从项目上复制过来的。。。。。。

溺渁∝ 2022-09-11 19:11:17

不知道你用的那种语言反正算法是类似的,以下是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;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文