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

小程序通过坐标请求腾讯位置服务获取当前位置信息

时间:2020-06-13 13:19:17      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:this   gcj   rev   type   div   小程序   gcj02   nbsp   color   

 getLocal(){
    let that=this;
    wx.getLocation({
      type: ‘gcj02‘,
      success(res) {
        const latitude = res.latitude
        const longitude = res.longitude
        console.log(latitude)
        console.log(longitude)
       that.getLocalMess(latitude,longitude)
      }
    })
  },
  getLocalMess(lat,lon){
    var _this = this;
    qqmapsdk.reverseGeocoder({
      //位置坐标,默认获取当前位置,非必须参数
      location: {
        latitude: lat,
        longitude: lon
      },
      success: function(res) {//成功后的回调
        console.log(res);
      },
      fail: function(error) {
        console.error(error);
      },
      complete: function(res) {
        console.log(res);
      }
    })
  },

 

小程序通过坐标请求腾讯位置服务获取当前位置信息

标签:this   gcj   rev   type   div   小程序   gcj02   nbsp   color   

原文地址:https://www.cnblogs.com/dianzan/p/13113467.html

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