wx.getLocation({
type: 'wgs84',
success: (res) => {
const latitude = res.latitude;
const longitude = res.longitude;
console.log('wgs84', latitude, longitude);
},
});
wx.getLocation({
type: 'gcj02',
success: (res) => {
const latitude = res.latitude;
const longitude = res.longitude;
console.log('gcj02', latitude, longitude);
},
});
无论是GPS坐标还是国测局坐标,返回的经纬度都是一样的
官方人员 可以直接复制我这代码进行测试
开发者工具的话,两者都是一样的。真机你试一下在一次 getLocation 的回调里再调用第二次,看看还有没有问题?像
wx.getLocation({
type:
'wgs84'
,
success: (res) => {
wx.getLocation({
type:
'gcj02'
})
}
})