wx.getLocation这个api加上type属性后在安卓机上获取不到地址
在开发者工具里和ios真机测试加上这个type是可以获取到当前地址的
wx.getLocation({
type: 'gcj02',
success: function(res) { var latitude = res.latitude var longitude = res.longitude var speed = res.speed var accuracy = res.accuracy
}
})
但是在安卓真机测试的时候只有去掉type才能获取到当前地址,加上type后就会得到fail
wx.getLocation({
success: function(res) { var latitude = res.latitude var longitude = res.longitude var speed = res.speed var accuracy = res.accuracy
}
})