微信中Google坐标转换为百度地图坐标

              $lat //我的纬度

              $lng //我的经度

               //将我的经纬度由Google坐标转换为百度地图坐

              $url="http://api.map.baidu.com/ag/coord/convert?from=0&to=4&x=".$lng."&y=".$lat."";
              $html=file_get_contents($url);
              $result=json_decode($html,true);
              $x=$result['x'];//经度
              $y=$result['y'];//纬度
              $lng1= base64_decode($x);//解密
              $lat1=base64_decode($y);//解密

              //根据经纬度调用百度地图接口获取当前所在城市

              $lat //我的纬度
              $lng //我的经度

              $ak="cSk1C1VfexgxAewccLLOVFgKn9K71NcK";//该值是在百度地图API上面创建应用生成的
              $urls="http://api.map.baidu.com/geocoder/v2/?location=".$lat.",".$lng."&output=json&pois=1&ak=".$ak."";
              $html=file_get_contents($urls);
              $dataarea=json_decode($html,true);
              $city=$dataarea['result']['addressComponent']['city'];

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值