小程序
小游戏
企业微信
微信支付
扫描小程序码分享
onLocationChange默认是每3秒获取一次吗?可以手动修改时间间隔吗
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
wx.startLocationUpdate({
success: (res) => {
wx.onLocationChange((data) => {
//获取当前时间
var currentTime = new Date().getTime();
//获取上次保存的位置信息
var oldLocation = wx.getStorageSync('oldLocation');
//获取上次执行的时间
var oldTime = wx.getStorageSync('oldTime');
//将经纬度拼接
var newLocation = data.latitude+""+data.longitude;
//判断当前的位置是否和上次位置不一致
if(oldLocation!=newLocation){
//缓存当前最新位置
wx.setStorageSync('oldLocation',newLocation);
//缓存当前执行的时间
wx.setStorageSync('oldTime',currentTime);
//如果本次执行时间距离上次时间超过5s,将位置信息上传后台
if(currentTime-oldTime>5000){
}
});
console.log('startLocationUpdate-res', res)
},
fail: (err) => {
that.setData({
modalName: 'DialogModal1'
})
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
请问有解决办法么?
应该是位置变化了就会触发(监听实时地理位置变化事件)
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
wx.startLocationUpdate({
success: (res) => {
wx.onLocationChange((data) => {
//获取当前时间
var currentTime = new Date().getTime();
//获取上次保存的位置信息
var oldLocation = wx.getStorageSync('oldLocation');
//获取上次执行的时间
var oldTime = wx.getStorageSync('oldTime');
//将经纬度拼接
var newLocation = data.latitude+""+data.longitude;
//判断当前的位置是否和上次位置不一致
if(oldLocation!=newLocation){
//缓存当前最新位置
wx.setStorageSync('oldLocation',newLocation);
//缓存当前执行的时间
wx.setStorageSync('oldTime',currentTime);
//如果本次执行时间距离上次时间超过5s,将位置信息上传后台
if(currentTime-oldTime>5000){
}
}
});
console.log('startLocationUpdate-res', res)
},
fail: (err) => {
that.setData({
modalName: 'DialogModal1'
});
}
})
请问有解决办法么?
应该是位置变化了就会触发(监听实时地理位置变化事件)