有没有办法实现指定时间频率的后台位置信息更新,现在的频率太高了,太费电
wxstartLocationUpdateBackground();确实非常耗电,强烈建议增加“频次”参数;
如:
wxstartLocationUpdateBackground({interval:120*1000});//120秒更新一次位置信息
可以在 onLocationChange 中设定频率处理
https://developers.weixin.qq.com/community/develop/doc/0008a0d42489f8466559bf3cc51c00 你有没有这个问题?
楼主现在问题解决了吗?
如果不嫌麻烦且不需要后台接收的话,可以用定时器 + wx.getLocation 的方式实现。