1、确定接口申请通过
2、在app.json里配置
"requiredPrivateInfos": [
"getFuzzyLocation"
],
"permission": {
"scope.userFuzzyLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
3、在需要调用的页面
wx.getFuzzyLocation({
type: 'wgs84',
success:res=>{
console.log('请求模糊位置',res);
wx.setStorageSync('userLat', res.latitude);
wx.setStorageSync('userLng', res.longitude);
}
})
4、真机调试,新街口不能在开发者工具里使用