- 持续定位都在同一坐标
使用小程序进行持续定位。。开始定位的几十条数据都没问题,,,但是后面的都是同一个坐标点,。这个是什么导致的。是因为GPS信号问题嘛
2020-07-17 - 关于持续定位的问题?
我在使用startLocationUpdateBackground 进行定位没问题 我息屏或者离开小程序 (不是把进程关闭)都能进行持续定位 但是这个每秒进行一次定位这个耗时又耗电。 不能自己定义定位时间嘛。。 然后我就自己写了个延迟加载。确实是定位了。。但是息屏和离开小程序后返回的坐标都是0 这个问题是为什么 代码如下: locationWz(){ let that = this; let num = 1; wx.startLocationUpdateBackground({ success(res) { console.log('开启后台定位', res) wx.onLocationChange(function(res) { if(num==1){ console.log('定位回调', res) util.getNoLoad(that.data.insertLocation, { latitude: res.latitude,longitude: res.longitude,openId:wx.getStorageSync("openId"),networkStatus:that.data.networkType,electricQuantity:that.data.level}, function (res) { console.log("aaa:" + res.data); wx.stopLocationUpdate(); that.setTime(); }) // that.setTime(); } num= 0; }) }, fail(res) { console.log('开启后台定位失败', res) } }) }, setTime(){ let that = this setTimeout(function () { that.locationWz() }, 10000) //延迟时间 这里是10秒 },
2020-05-25 - 关于持续定位?
在我使用小程序中的持续定位功能时。 我延迟加载设置了1分钟定位一次。前面几次都定位成功了,有返回XY坐标。但是经过6-7次以后定位就全部返回坐标为0 这是什么原因导致的。。我是做的真机调试。。开发版
2020-05-21 - 模板消息
我在调试的时候使用模版消息没问题 但是一旦发布小程序后使用模版消息就没反映
2018-06-04