码迷,mamicode.com
首页 > 微信 > 详细

微信小程序开发之地图经纬度处理

时间:2018-05-15 20:59:09      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:cti   get   cal   程序开发   处理   func   etl   color   code   

在开发微信小程序时。碰上地图的时候头有点痛。比如微信自带的定位功能;

//根据精度纬度获取当前地址信息
function GetAddress(CallBack) {
  var that=this
  wx.getLocation({
    type: ‘wgs84‘,
    success: function (res) {
      var latitude = res.latitude
      var longitude = res.longitude
      that.GetAddressBylatislong(latitude, longitude,function(res){
        CallBack(res)
      })
    }
  })
}

这个方法是根据当前经纬度获取附近的地点信息;

返回的数据也不错。大家可以看一下

微信小程序开发之地图经纬度处理

标签:cti   get   cal   程序开发   处理   func   etl   color   code   

原文地址:https://www.cnblogs.com/yunshangxiaolei/p/9042734.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!