亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序如何獲取地理位置及經緯度授權

發布時間:2021-05-22 10:50:38 來源:億速云 閱讀:403 作者:小新 欄目:web開發

這篇文章給大家分享的是有關微信小程序如何獲取地理位置及經緯度授權的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

這篇文章主要介紹了微信小程序獲取地理位置及經緯度授權代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

微信小程序獲取地理位置授權,首先需要在app.json中添加配置:

"permission": {
  "scope.userLocation": {
   "desc": "請確認授權"
  }
 }

獲取經緯度:如果手機未開啟位置信息,那么授權成功后在wx.getLocation()方法中也會一直失敗,所以需要在fail方法中提示用戶開啟手機位置信息

getUserLocation: function () {
    let vm = this
    wx.getSetting({
      success: (res) => {
        // res.authSetting['scope.userLocation'] == undefined  表示 初始化進入該頁面
        // res.authSetting['scope.userLocation'] == false  表示 非初始化進入該頁面,且未授權
        // res.authSetting['scope.userLocation'] == true  表示 地理位置授權
        // 拒絕授權后再次進入重新授權
        if (res.authSetting['scope.userLocation'] != undefined && res.authSetting['scope.userLocation'] != true) {
          // console.log('authSetting:status:拒絕授權后再次進入重新授權', res.authSetting['scope.userLocation'])
          wx.showModal({
            title: '',
            content: '【泰福利Lite】需要獲取你的地理位置,請確認授權',
            success: function (res) {
              if (res.cancel) {
                wx.showToast({
                  title: '拒絕授權',
                  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) {
                      //再次授權,調用wx.getLocation的API
                      vm.getLocation(dataAu)
                    } else {
                      wx.showToast({
                        title: '授權失敗',
                        icon: 'none'
                      })
                      setTimeout(() => {
                        wx.navigateBack()
                      }, 1500)
                    }
                  }
                })
              }
            }
          })
        }
        // 初始化進入,未授權
        else if (res.authSetting['scope.userLocation'] == undefined) {
          // console.log('authSetting:status:初始化進入,未授權', res.authSetting['scope.userLocation'])
          //調用wx.getLocation的API
          vm.getLocation(res)
        }
        // 已授權
        else if (res.authSetting['scope.userLocation']) {
          // console.log('authSetting:status:已授權', res.authSetting['scope.userLocation'])
          //調用wx.getLocation的API
          vm.getLocation(res)
        }
      }
    })
  },
  // 微信獲得經緯度
  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: '拒絕授權',
            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: '請在系統設置中打開定位服務',
            showCancel: false,
            success: result => {
              if (result.confirm) {
                wx.navigateBack()
              }
            }
          })
        } else {
          wx.showToast({
            title: '授權失敗',
            icon: 'none'
          })
          setTimeout(() => {
            wx.navigateBack()
          }, 1500)
        }
      }
    })
  }

感謝各位的閱讀!關于“微信小程序如何獲取地理位置及經緯度授權”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泰顺县| 东平县| 扶余县| 澜沧| 和顺县| 尖扎县| 大荔县| 即墨市| 高雄县| 绩溪县| 中江县| 靖宇县| 汝南县| 尼勒克县| 英山县| 三台县| 吉水县| 平顶山市| 随州市| 洪雅县| 新竹县| 西吉县| 梓潼县| 台前县| 临江市| 清涧县| 西平县| 广灵县| 融水| 上饶市| 兴隆县| 永寿县| 凤阳县| 新和县| 鄂尔多斯市| 丹寨县| 北票市| 班玛县| 抚顺市| 崇阳县| 荆州市|