赞
踩
原来真的有人,删掉手机里所有的娱乐软件,不管不顾任何东西,没日没夜的学习,就只是为了回到原来那个眼里有光被赋予希望的自己。 你要坚信每一个你想学习的念头,都是未来在向你求救!
懒惰是一个特别奇怪的东西, 它使你以为安逸是休息,是福气,它实际上给你带来了是无聊,是倦怠,是消沉,它剥夺你对前途的希望,隔断你和别人之间的友情,使你的心胸日益狭窄,对人生也越来越怀疑!
uniapp如何检测GPS有没有开启,如果用户没有开启GPS使用定位如何实现?
针对此类问题,我们常用的办法就是打开手机的GPS即可。但是通常用户对这种操作用的并不多,所以会花费一些时间去设置进行查找如何开启GPS,所以我们需要帮助用户让手机界面主动来到GPS定位开启页面,这种做法才是相对比较有好的。
我们通常使用手机定位,会有Android和iOS两种系统区分,所以这里采用的办法是写一个公共的函数进行调用,通过对手机操作系统的判断进行区分。
代码如下:
/* * 打开[ios/安卓]GPS定位权限 */ export function openGps() { 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)) { 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服务页面 } }); } } else if (system.platform === 'ios') { var cllocationManger = plus.ios.import("CLLocationManager"); var enable = cllocationManger.locationServicesEnabled(); var status = cllocationManger.authorizationStatus(); plus.ios.deleteObject(cllocationManger); 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("App-Prefs:root=Privacy&path=LOCATION"); application2.openURL(setting2); plus.ios.deleteObject(setting2); plus.ios.deleteObject(NSURL2); plus.ios.deleteObject(application2); } }); } }
uni.getLocation({
type: 'gcj02', // 安卓需指定 type 为 gcj02
geocode: true, //设置该参数为true可直接获取经纬度及城市信息
success: (res) => {
console.log('当前位置的经度:' + res.longitude);
console.log('当前位置的纬度:' + res.latitude);
},
fail: (error) => {
openGps() // 打开定位
}
});
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。