当前位置:   article > 正文

uniapp-微信小程序获取定位授权_uniapp 微信小程序蓝牙授权

uniapp 微信小程序蓝牙授权
//  获取用户的地理位置,
getLocation() {
    uni.getLocation({
        type: 'gcj02',
        altitude: true,
        success(res) {
            let latAndLon = {
                mylog: res.longitude,
                mylat: res.latitude
            }
            uni.setStorageSync('latAndLon', latAndLon)
        }
    })
},
    /*判断是否已经授权 */
    getSetting() {
        const that = this
        uni.getSetting({
            success(res) {
                if (res.authSetting['scope.userLocation']) {
                    that.getLocation()
                } else {
                    that.getAuthorize()
                }
            }
        })
    },
        // 自动授权
        getAuthorize() {
            let that = this
            uni.authorize({
                scope: 'scope.userLocation',
                success(res) {
                    that.getLocation()
                },
                // 授权失败
                fail(err) {
                    uni.showModal({
                        title: '提示',
                        content: '请授权位置获取附近的商家!',
                        showCancel: false,
                        confirmText: '确认授权',
                        success() {
                            uni.openSetting({
                                success(res) {},
                                fail(err) {}
                            })
                        }
                    })
                }
            })
        },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/548599
推荐阅读