- wx.onLocationChange 没有坐标类型?
感谢官方 2。8 基础库中wx.startLocationUpdate解决了精度的问题,但wx.onLocationChange获取的gcj02 坐标,不是更通用的wgs84,也不能像wx.getLocation一样设置type. 希望后续能更新此功能。
2019-08-19 - wx.getLocation 安卓定位精度低 IOS正常 解决进度
最新基础还是没解决此问题,请问官方何时安排解决 这问题已经好多人反映而且时间也很久了,希望尽快解决, 小程序运营卡在这里,严重影响推广进程。 希望尽早列入解决的日程 https://developers.weixin.qq.com/community/develop/doc/0004a840c94aa06081b867ca851c00 var _this = this; //设置计时器,不停获取位置信息以测速 gps: setInterval(function () { wx.getLocation({ type: 'wgs84', success(res) { if (res.speed == -1) { _this.setData({ accuracy: res.accuracy, speed: 0 }) } else { _this.setData({ accuracy: res.accuracy, speed: res.speed * 3.6 }) } }, }) }, 1000) //1秒刷新一次
2019-07-29 - wx.getLocation 安卓定位精度低 IOS正常 有在解决吗
安卓手下定位精度一直很低,测试过多部手机,精度基本在30左右,而且经常不更新,手机内置的导航软件很正常。 在IOS下精度一直在10米以内。社区里已经多名开发者提出此问题,请官方抽出时间跟进一下。 https://developers.weixin.qq.com/community/develop/doc/000e06585741307c608850a8a5b800?highLine=%25E5%25AE%2589%25E5%258D%2593%2520wx.getLocation%2520%25E7%25B2%25BE%25E5%25BA%25A6 var _this = this; //设置计时器,不停获取位置信息以测速 gps: setInterval(function () { wx.getLocation({ type: 'wgs84', success(res) { if (res.speed == -1) { _this.setData({ accuracy: res.accuracy, speed: 0 }) } else { _this.setData({ accuracy: res.accuracy, speed: res.speed * 3.6 }) } }, }) }, 1000) //1秒刷新一次
2019-07-08 - wx.getLocation 安卓定位精度低 IOS正常
安卓手下定位精度一直很低,测试过多部手机,精度基本在30左右,而且经常不更新,手机内置的导航软件很正常。 在IOS下精度一直在10米以内。社区里已经多名开发者提出此问题,请官方抽出时间跟进一下。 https://developers.weixin.qq.com/community/develop/doc/000e06585741307c608850a8a5b800?highLine=%25E5%25AE%2589%25E5%258D%2593%2520wx.getLocation%2520%25E7%25B2%25BE%25E5%25BA%25A6 var _this = this; //设置计时器,不停获取位置信息以测速 gps: setInterval(function () { wx.getLocation({ type: 'wgs84', success(res) { if (res.speed == -1) { _this.setData({ accuracy: res.accuracy, speed: 0 }) } else { _this.setData({ accuracy: res.accuracy, speed: res.speed * 3.6 }) } }, }) }, 1000) //1秒刷新一次
2019-06-17 - filesystemmanager.unzip 解压后中文名乱码
开发工具和真机上都一样 下载的压缩包里文件正常,就是执行 UPZIP后成乱码 [图片] [图片]
2019-01-25 - getLocation 频率限制是多少 快了报错
调用快了1S 提示这个getLocation:fail meet frequency limit, please slowdown and try again later
2019-01-17 - FileSystemManager.unzip 压缩后 中文名乱码
- 当前 Bug 的表现(可附上截图) 压缩正常,打开后显示乱码文件名 [图片] - 预期表现 - 复现路径 - 提供一个最简复现 Demo
2018-11-28