微信小程序结合腾讯地图定位当前城市(位置)

2022/4/21 20:42:47

本文主要是介绍微信小程序结合腾讯地图定位当前城市(位置),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 onl oad(options) {
     this.getUserLocation()
    },
    /**
     * 定位地点
     */
getUserLocation: function () {
    let _this = this
    wx.getLocation({
      type: 'gcj02', // type有两中类型,gcj02 是腾讯地图所能解析的
      success: res => {
        _this.setData({
          locationObj: res
        })
        // 调用获取城市名称方法
        _this.getCity()
      }
    })
  },
  // 获取定位城市名称方法
  getCity: function () {
    var _this = this
    wx.request({
      url: `https://apis.map.qq.com/ws/geocoder/v1/?key=QDOBZ*********************VFQZ&location=`+ _this.data.locationObj.latitude + ',' +_this.data.locationObj.longitude,
      success: res => {
        console.log(res.data) // 此处返回的就是需要查询的城市名称
      }
    })
  },
})

 腾讯地图获取key

https://lbs.qq.com/dev/console/application/mine



这篇关于微信小程序结合腾讯地图定位当前城市(位置)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程