微信小程序根据当前所在地址来获取城市名称

我的需求,页面一打开就获取当前的省份!!!

app.json 配置

"permission": {
    "scope.userLocation": {
      "desc": "你的位置信息将用于定位当前省份"
    }
  }

index.js

onReady: function () {  
        let _this = this;
    wx.getLocation({
      type: 'wgs84',
      success(res) {
        console.log(res)
        const latitude = res.latitude
        const longitude = res.longitude
        const speed = res.speed
        const accuracy = res.accuracy
        _this.getProvinceName(latitude, longitude)
      }
    })
  },
getProvinceName(latitude, longitude){
    wx.request({
      url: 'https://apis.map.qq.com/ws/geocoder/v1/?location=' + latitude + ',' + longitude + '&key=填写你自己的key',   
      data:{},
      success: (res)=> {
        console.log(res)
       // res.data.result.address_component.province   就是我要获取的省份了;
        });
      }
    })
  },

微信小程序根据当前所在地址来获取城市名称_第1张图片

在开发的时候要注意一个点,就是腾讯位置的配置

打开腾讯位置网址https://lbs.qq.com/  登录账号,接着按如下图操作即可

微信小程序根据当前所在地址来获取城市名称_第2张图片

 

 

 

 

你可能感兴趣的:(小程序,前端知识点)