這篇文章給大家分享的是有關(guān)微信小程序如何獲取地理位置及經(jīng)緯度授權(quán)的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
耀州ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!這篇文章主要介紹了微信小程序獲取地理位置及經(jīng)緯度授權(quán)代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
微信小程序獲取地理位置授權(quán),首先需要在app.json中添加配置:
"permission": { "scope.userLocation": { "desc": "請確認授權(quán)" } }
獲取經(jīng)緯度:如果手機未開啟位置信息,那么授權(quán)成功后在wx.getLocation()方法中也會一直失敗,所以需要在fail方法中提示用戶開啟手機位置信息
getUserLocation: function () { let vm = this wx.getSetting({ success: (res) => { // res.authSetting['scope.userLocation'] == undefined 表示 初始化進入該頁面 // res.authSetting['scope.userLocation'] == false 表示 非初始化進入該頁面,且未授權(quán) // res.authSetting['scope.userLocation'] == true 表示 地理位置授權(quán) // 拒絕授權(quán)后再次進入重新授權(quán) if (res.authSetting['scope.userLocation'] != undefined && res.authSetting['scope.userLocation'] != true) { // console.log('authSetting:status:拒絕授權(quán)后再次進入重新授權(quán)', res.authSetting['scope.userLocation']) wx.showModal({ title: '', content: '【泰福利Lite】需要獲取你的地理位置,請確認授權(quán)', success: function (res) { if (res.cancel) { wx.showToast({ title: '拒絕授權(quán)', icon: 'none' }) setTimeout(() => { wx.navigateBack() }, 1500) } else if (res.confirm) { wx.openSetting({ success: function (dataAu) { // console.log('dataAu:success', dataAu) if (dataAu.authSetting["scope.userLocation"] == true) { //再次授權(quán),調(diào)用wx.getLocation的API vm.getLocation(dataAu) } else { wx.showToast({ title: '授權(quán)失敗', icon: 'none' }) setTimeout(() => { wx.navigateBack() }, 1500) } } }) } } }) } // 初始化進入,未授權(quán) else if (res.authSetting['scope.userLocation'] == undefined) { // console.log('authSetting:status:初始化進入,未授權(quán)', res.authSetting['scope.userLocation']) //調(diào)用wx.getLocation的API vm.getLocation(res) } // 已授權(quán) else if (res.authSetting['scope.userLocation']) { // console.log('authSetting:status:已授權(quán)', res.authSetting['scope.userLocation']) //調(diào)用wx.getLocation的API vm.getLocation(res) } } }) }, // 微信獲得經(jīng)緯度 getLocation: function (userLocation) { let vm = this wx.getLocation({ type: "wgs84", success: function (res) { // console.log('getLocation:success', res) var latitude = res.latitude var longitude = res.longitude vm.getDaiShu(latitude, longitude) }, fail: function (res) { // console.log('getLocation:fail', res) if (res.errMsg === 'getLocation:fail:auth denied') { wx.showToast({ title: '拒絕授權(quán)', icon: 'none' }) setTimeout(() => { wx.navigateBack() }, 1500) return } if (!userLocation || !userLocation.authSetting['scope.userLocation']) { vm.getUserLocation() } else if (userLocation.authSetting['scope.userLocation']) { wx.showModal({ title: '', content: '請在系統(tǒng)設(shè)置中打開定位服務(wù)', showCancel: false, success: result => { if (result.confirm) { wx.navigateBack() } } }) } else { wx.showToast({ title: '授權(quán)失敗', icon: 'none' }) setTimeout(() => { wx.navigateBack() }, 1500) } } }) }
感謝各位的閱讀!關(guān)于“微信小程序如何獲取地理位置及經(jīng)緯度授權(quán)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。