uniapp 使用uni.getLocation获取的坐标并不是我的当前坐标
var that=this;
uni.getLocation({
type:'wgs84',
success: (res) => {
that.hasLocation = true;
that.longitude=-res.longitude;
that.latitude=res.latitude;
},
得到的坐标是122.41,37.79这个坐标在海上
1 个回复
DCloud_UNI_GSQ
哪端?