<map id="map" style="width: 100%; height: 300px;margin: 10rpx 0;" :latitude="latitude" :longitude="longitude" :markers="covers" :polyline='polyline' />
setInterval(() => {
uni.getLocation({
type: "gcj02",
isHighAccuracy: true,
success: (res) => {
let longitude = res.longitude;
let latitude = res.latitude;
//polyline
this.polyline[0].points.push({ longitude, latitude });
//center
this.longitude = longitude;
this.latitude = latitude;
//marker
this.covers[0].longitude = longitude;
this.covers[0].latitude = latitude;
this.polyline = [...this.polyline];
this.covers = [...this.covers];
},
fail: (res) => {}
});
}, 10000);
app端用的是高德定位,appkey也申请了,也能正常获取坐标,就是坐标不准,该咋办呢?
恳请各位大佬进行指点!!!实在是找不到解决方案了
4 个回复
Diligent_UI - 【插件开发】【专治疑难杂症】【多款插件已上架:https://ext.dcloud.net.cn/publisher?id=193663(微信搜索飘逸科技UI小程序直接体验)】【骗子请绕道】问题咨询请加QQ群:120594820,代表作灵感实用工具小程序
不太了解什么情况
快码无敌
我的也是,解决了么?
Cherishs
解决了吗博主
DCloud_heavensoft
手机开启高精度定位了吗?
官方有一个unicloud-map,你可以试下在这个手机上有没有问题