电信卡无法获得位置信息
- 当前 Bug 的表现(可附上截图)
wx.getLocation({
type: 'wgs84',
success(res) {
const latitude = res.latitude
const longitude = res.longitude
const speed = res.speed
const accuracy = res.accuracy
}
})
wx.getLocation调用,双卡手机,一张移动卡,一张电信卡。设置为使用电信卡上网时wx.getLocation 成功返回,但是获得的经纬度都是0, 偶尔能返回正常值,概率大概是100次有1到2次能返回正常的经纬度,而设置为使用移动卡每次返回都是正常的。
- 预期表现
使用电信卡也应该能够获得经纬度吧,不能全是0吧?
- 复现路径
- 提供一个最简复现 Demo