当前位置:   article > 正文

小程序使用接口wx.getLocation配置

小程序使用接口wx.getLocation配置

开通时需详细描述业务,否则可能审核不通过

在这里插入图片描述

可能需要绑定腾讯位置服务,新建应该,绑定到小程序

在这里插入图片描述

配置

权限声明:在使用wx.getLocation前,需要在app.json的permission字段中声明对用户位置信息的使用权限,并提供一个合适的理由让用户明白为何需要这些权限。

  "permission": {
    "scope.userLocation": {
      "desc": "你的位置信息将用于..."
    }
  },
 "requiredPrivateInfos": ["chooseLocation", "getLocation"],
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

使用

 wx.getLocation({
      type: 'wgs84', // 默认为wgs84的GPS坐标,gcj02则返回可用于微信地图的坐标
      success: function (res) {
        const latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90
        const longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。
        const speed = res.speed; // 速度,以米/每秒计
        const accuracy = res.accuracy; // 位置精度
        console.log('当前位置纬度:' + latitude + ', 经度:' + longitude, speed, accuracy);

      },
      fail: function (err) {
        console.log('获取位置失败', err);
      },
      complete: function () {
        // 成功或失败都会执行的回调
      }
    })
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/733480
推荐阅读
相关标签
  

闽ICP备14008679号