基于上次文章做了优化和改良,保证在登录状态下才获取定位信息
uniapp 小程序实时且持续获取定位信息(全局设置一次)(单页面监听定位改变)(不采用定时器)_uniapp小程序定位_前端小胡兔的博客-CSDN博客本篇文章实现了uniapp 微信小程序实时获取定位信息,小程序打开即可持续获取定位信息, 位置更新也会触发相关自定义事件_uniapp小程序定位https://blog.csdn.net/weixin_44805839/article/details/131984957?utm_source%20=%20uc_fansmsg
采用uniapp推出的: uni.onLocationChange(监听实时地理位置变化事件)
在app.vue中定义一次 且设置监听事件(便于独立页面监测定位改变并调用其他事件)
有关"uni.onLocationChange"的相关内容,不再赘述,详情见官网:
uni.onLocationChange(FUNCTION CALLBACK) | uni-app官网uni-app,uniCloud,serverlesshttps://uniapp.dcloud.net.cn/api/location/location-change.html
(重要设置"startLocationUpdate"和"onLocationChange"):
"mp-weixin" : {
"appid" : "", //appid
"setting" : {
"urlCheck" : false
},
"usingComponents" : true,
"permission" : {
"scope.userLocation" : {
"desc" : "定位" //微信小程序获取location必填
}
},
"requiredPrivateInfos": [
"getLocation", //使用uni.getlocation才需声明
"startLocationUpdate", //必要
"onLocationChange" //必要
]
},
getApp().globalData.loginType = true; //改变登录状态
getApp().updateLocationChange(); //开启上传位置
getApp().globalData.loginType = false;
在任意页面监听globalData中的数据实时变化,并调用定义的不同方法
// 监听全局变量变化(经纬度需要)
watch: function(variate, method) {
var obj = this.globalData;
let val = obj[variate]; // 单独变量来存储原来的值
Object.defineProperty(obj, variate, {
configurable: true,
enumerable: true,
set: function(value) {
val = value; // 重新赋值
if (method) {
method(variate, value); // 执行回调方法
}
},
get: function() {
// 在其他界面调用getApp().globalData.variate的时候,这里就会执行。
return val; // 返回当前值
}
})
},
例如我想经纬度变化时 可以在页面这样操作:
onLoad() {
this.latitude = getApp().globalData.latitude;
this.longitude = getApp().globalData.longitude;
//实时获取当前位置
getApp().watch('latitude', this.watchLocation);
getApp().watch('longitude', this.watchLocation);
},
methods: {
//监听location变化回调
watchLocation: function(name, value) {
if (name == 'latitude') {
this.latitude = value;
}
if (name == 'longitude') {
this.longitude = value;
}
},
}
以上就是本篇文章的全部内容啦~ 欢迎小伙伴们一起探讨 一起进步~