首先在app.config.json中配置
export default defineAppConfig({
pages: [],
permission: {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
})
方法调用:
const getLocation = () =>{
Taro.getLocation({
type: 'gcj02',
isHighAccuracy: true,
success: (res) => {
console.log('res', res)
const { latitude, longitude } = res;
// do something...
},
fail: (err) => {
Taro.showModal({
title: '获取定位失败,请重新授权',
content: '',
success: (res) => {
if (res.confirm) {
getLocation()
} else {
// 点击取消,则退出该页面(自行做容错处理)
Taro.switchTab({
url: '/pages/home/index'
})
}
}
})
}
})
}
配置参数:
回调函数的参数: