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

Posted ThisCall

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序通过坐标请求腾讯位置服务获取当前位置信息相关的知识,希望对你有一定的参考价值。

 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);
      }
    })
  },

 

以上是关于小程序通过坐标请求腾讯位置服务获取当前位置信息的主要内容,如果未能解决你的问题,请参考以下文章

uni-app开发微信小程使用腾讯位置服务获取用户的位置信息

uni-app开发微信小程使用腾讯位置服务获取用户的位置信息

uni-app开发微信小程使用腾讯位置服务获取用户的位置信息

小程序可以实现地图点选 获取经纬度位置信息功能吗?

微信小程序 定位 获取国家省市区

微信小程序实现城市定位:获取当前所在的国家城市信息