uniapp的h5和微信小程序判断用户设备的位置服务是否开启
//判断用户是否开启定位-暂时不用
checkOpenGPSServiceByAndroid() {
let that = this
// 1、判断手机定位服务【GPS】 是否授权
uni.getSystemInfo({
success(res) {
// console.log(res)
let locationEnabled = res.locationEnabled; //判断手机定位服务是否开启
let locationAuthorized = res.locationAuthorized; //判断定位服务是否允许微信授权
if (locationEnabled == false || locationAuthorized == false) {
//手机定位服务(GPS)未授权
uni.showModal({
title: '提示',
content: '请打开定位服务功能',
showCancel: false, // 不显示取消按钮
success() {
uni.navigateBack({
delta: 1, //返回层数,2则上上页
})
}
})
} else {
//手机定位服务(GPS)已授权
if (res.hostName == 'WeChat') {
//2、判断微信小程序是否授权位置信息
uni.getSetting({
success(res) {
let scopeUserLocation = res.authSetting["scope.userLocation"];
if (scopeUserLocation) {
// 微信小程序已授权位置信息
that.getCurrent()
} else {
// 微信小程序未授权位置信息
uni.showModal({
title: '提示',
content: '请允许使用位置信息',
showCancel: false, // 不显示取消按钮
success() {
uni.navigateBack({
delta: 1, //返回层数,2则上上页
})
}
})
}
},
fail() {
// 微信小程序未授权位置信息
uni.showModal({
title: '提示',
content: '获取位置信息失败',
showCancel: false, // 不显示取消按钮
success() {
uni.navigateBack({
delta: 1, //返回层数,2则上上页
})
}
})
}
});
} else {
that.getCurrent()
}
}
},
fail() {
// 手机定位服务(GPS)未授权
uni.showModal({
title: '提示',
content: '获取位置信息失败',
showCancel: false, // 不显示取消按钮
success() {
uni.navigateBack({
delta: 1, //返回层数,2则上上页
})
}
})
}
});
},