getLocation(){
uni.getLocation({
type: 'wgs84',
success: function (res) {
console.log('當前位置的經度:' + res.longitude);
console.log('當前位置的緯度:' + res.latitude);
},
fail(){
uni.showModal({
content: '檢測到您沒打開獲取位置功能權限,是否去設置打開?',
confirmText: "確認",
cancelText: '取消',
success: (res) => {
if (res.confirm) {
uni.openSetting({
success: (res) => {
uni.showToast({
title: '授權后請重新打開此頁面',
icon: 'none',
success:function(){
}
})
},
fail: (err) => {
console.log(err)
}
})
} else {
uni.showToast({
title: '獲取地理位置授權失敗',
icon: 'none',
success:function() {
}
})
}
}
})
}
});
},