微信小程序获取当前经纬度
生活随笔
收集整理的這篇文章主要介紹了
微信小程序获取当前经纬度
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
//預約到店 獲取當前經緯度
getLocation() {const that = this;uni.authorize({scope: 'scope.userLocation',geocode: true,success() { // 允許授權// that.getLocationInfo();uni.getLocation({ //獲取經緯度信息type: 'wgs84',success(res) {let latitude, longitude;latitude = res.latitude.toString();longitude = res.longitude.toString();}});},fail() { // 拒絕授權// that.openConfirm();console.log("你拒絕了授權,無法獲得周邊信息")}})
},
總結
以上是生活随笔為你收集整理的微信小程序获取当前经纬度的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 在R语言中实现Logistic逻辑回归
- 下一篇: Istio架构剖析 | 文末有福利