使用

    1. wx.getLocation({
    2. type: 'wgs84',
    3. success (res) {
    4. const latitude = res.latitude
    5. const longitude = res.longitude
    6. const speed = res.speed
    7. const accuracy = res.accuracy
    8. }
    9. })

    全局配置

    1. {
    2. "pages": ["pages/index/index"],
    3. "permission": {
    4. "scope.userLocation": {
    5. "desc": "你的位置信息将用于小程序位置接口的效果展示" // 高速公路行驶持续后台定位
    6. }
    7. }
    8. }

    参考地址
    位置使用
    位置配置