微信使用精准位置 wx.getLocation步骤

  1. 微信小程序 ->开发设置->接口设置->开通 wx.getLocation

  2. 申请理由:应当前业务涉及周边服务推荐需要,需获取用户地理位置信息

  3. 调试基础库:2.24.4

  4. 在app.json中添加
    “requiredPrivateInfos”:[
    “getLocation”
    ],
    微信使用精准位置 wx.getLocation步骤_第1张图片

  5. 页面使用:

        wx.getLocation({
            type: 'gcj02',
            success (res) {
                console.log('经纬度',res)
                const latitude = res.latitude
                const longitude = res.longitude
               wx.setStorageSync('latitude', latitude)
               wx.setStorageSync('longitude', longitude)
            },
            fail(res){
                console.log('获取经纬度失败',res)
            }
            
        })

你可能感兴趣的:(微信小程序,微信,微信小程序,小程序)