欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 汽车 > 时评 > uniapp检测手机是否打开定位权限Vue3-直接复制粘贴

uniapp检测手机是否打开定位权限Vue3-直接复制粘贴

2025/2/25 12:37:58 来源:https://blog.csdn.net/Rio_Gaven/article/details/141461924  浏览:    关键词:uniapp检测手机是否打开定位权限Vue3-直接复制粘贴

安卓示例:

苹果示例:

代码实现(vue3写法):

const checkGPS = ()=>{console.log('开始监听GPS状态');let system = uni.getSystemInfoSync(); // 获取系统信息if (system.platform === 'android') { // 判断平台var context = plus.android.importClass("android.content.Context");var locationManager = plus.android.importClass("android.location.LocationManager");var main = plus.android.runtimeMainActivity();var mainSvr = main.getSystemService(context.LOCATION_SERVICE);if (!mainSvr.isProviderEnabled(locationManager.GPS_PROVIDER)) {console.log('gps未开启');uni.showModal({title: '提示',content: '请打开定位服务功能',showCancel: false, // 不显示取消按钮success() {var Intent = plus.android.importClass('android.content.Intent');var Settings = plus.android.importClass('android.provider.Settings');var intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);main.startActivity(intent); // 打开系统设置GPS服务页面}});return false}else{console.log('gps已开启');uni.getLocation({type: "gcj02", // 返回可以用于uni.openLocation的经纬度success: async(res) => {console.log('经纬度',res);try {// 自己的逻辑代码(调接口)} catch (err) {console.log('err',err);}	},});return true}} else if (system.platform === 'ios') {var cllocationManger = plus.ios.import('CLLocationManager');var enable = cllocationManger.locationServicesEnabled();var status = cllocationManger.authorizationStatus();plus.ios.deleteObject(cllocationManger);if (enable && status != 2) {console.log('手机系统的定位已经打开');uni.getLocation({type: "gcj02", // 返回可以用于uni.openLocation的经纬度success: async(res) => {console.log('经纬度',res);try {// 自己的逻辑代码(调接口)} catch (err) {console.log('err',err);}},});return true} else {console.log('手机系统的定位没有打开');uni.showModal({title: '提示',content: '请打开定位服务功能',showCancel: false, // 不显示取消按钮success() {var UIApplication = plus.ios.import('UIApplication');var application2 = UIApplication.sharedApplication();var NSURL2 = plus.ios.import('NSURL');// var setting2 = NSURL2.URLWithString("prefs:root=LOCATION_SERVICES");// var setting2 = NSURL2.URLWithString("App-Prefs:root=LOCATION_SERVICES");// var setting2 = NSURL2.URLWithString("app-settings");var setting2 = NSURL2.URLWithString('App-Prefs:root=Privacy&path=LOCATION');// var setting2 = NSURL2.URLWithString("App-Prefs:root=Privacy&path=LOCATION_SERVICES");application2.openURL(setting2);plus.ios.deleteObject(setting2);plus.ios.deleteObject(NSURL2);plus.ios.deleteObject(application2);}});return false}}}

如果要换成vue2的写法:

const checkGPS = () => {} 改成 checkGPS(){}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

热搜词