<map id="container" :longitude="longitude" :latitude="latitude" :markers="markers" :show-location="true">
定位事件 只有第一次有效,移动地图后在进行定位就没反应了
uni.getLocation({
type: 'gcj02',
success: function (res) {
that.longitude = res.longitude;
that.latitude = res.latitude;
that.markers.push({
id: 100,
longitude: that.longitude,
latitude: that.latitude,
width: 20,
height: 30,
})
});
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。