zl程序教程

您现在的位置是:首页 >  其他

当前栏目

小程序地图定位,打开地图导航,选择位置

定位程序 选择 打开 位置 地图 导航
2023-09-27 14:27:34 时间

定位

 openLocation: function () {
    wx.openLocation({
      longitude: 113.324520,
      latitude: 23.099994,
      name: 'T.I.T 创意园',
      address: '广州市海珠区新港中路397号'
    })
}

选择位置

// app.json 中配置接口权限
{
  "pages": ["pages/index/index"],
  "permission": {
    "scope.userLocation": {
      "desc": "你的位置信息将用于小程序位置接口的效果展示" // 高速公路行驶持续后台定位
    }
  }
}

//选择位置
wx.chooseLocation({
      success(res){
        const latitude = res.latitude
        const longitude = res.longitude
        const speed = res.speed
        const accuracy = res.accuracy
      },
      fail(res){

      }
    })

在这里插入图片描述
在这里插入图片描述