通过 uni.getLocation 获取经纬度在一定范围内得到的经纬度是一样的。下面是实际的代码片段
uni.getLocation({
type: "gcj02",
isHighAccuracy: true,
success: function (res) {
console.log("当前位置的经度:" + res.longitude);
console.log("当前位置的纬度:" + res.latitude);
},
fail(err) {
console.error(err, "errr");
that.setLocation();
},
});
2***@qq.com
- 发布:2024-04-16 14:32
- 更新:2024-04-16 14:32
- 阅读:72
0 个回复