{ if (!res.authSetting['scope.userLocation']) { _permission"">
当前位置:   article > 正文

[微信小程序]获取用户当前位置信息_permission": { "scope.userlocation": { "desc": "你的

permission": { "scope.userlocation": { "desc": "你的位置信息将用于小程序获

按照以下步骤去做
在这里插入图片描述

微信官网下载qqmap-wx-jssdk.js文件
在这里插入图片描述
app.json

  "permission": {
    "scope.userLocation": {
      "desc": "你的位置信息将用于小程序位置定位"
    }
  },
  • 1
  • 2
  • 3
  • 4
  • 5

在这里插入图片描述

const QQMapWX = require('../../utils/qqmap-wx-jssdk.min.js');

 
  getLocation(){ // 获取当前地址经纬度
    var that=this; 
    // 可以通过 wx.getSetting 先查询一下用户是否授权了 "scope.record" 这个 scope
    wx.getSetting({
      success:res=> {
        if (!res.authSetting['scope.userLocation']) {
          wx.authorize({
            scope: 'scope.userLocation',
            success () {
              // 用户已经同意小程序使用录音功能,后续调用 wx.startRecord 接口不会弹窗询问 
              wx.getLocation({
                type: 'gcj02', //返回可以用于wx.openLocation的经纬度
                success:result=> {
                  console.log(result)
                  const latitude = result.latitude
                  const longitude = result.longitude 
                  that.getLocal(latitude,longitude)
                }
              });
            }
          });
        }else{//用户已经同意小程序使用定位功能,后续调用 wx.getLocation 接口不会弹窗询问
          wx.getLocation({
            type: 'gcj02', //返回可以用于wx.openLocation的经纬度
            success:result=> {
             console.log(result)
              const latitude = result.latitude
              const longitude = result.longitude 
              that.getLocal(latitude,longitude)
            }
          });
        }
      }
    });  
  }, 
  getLocal (lat, lon) {
    let qqmapsdk = new QQMapWX({
      key: 'your key'
    })
    qqmapsdk.reverseGeocoder({
      location: {
        latitude: lat,
        longitude: lon
      },
      success: function (res) {
        console.log(res, 'success')
      },
      fail: function (res) {
        console.log(res, 'fail')
      }
    })
  },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55

其他具体需求参考:

获取当前省份城市地区

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/968044
推荐阅读
相关标签
  

闽ICP备14008679号