收藏
回答

map组件使用定位图标,更改中心经纬度实现定位效果,只有第一次有效,第二次更改中心经纬度没反应?

<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,

})

});

回答关注问题邀请回答
收藏

1 个回答

  • Demons
    Demons
    2023-04-08

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2023-04-08
    有用
    回复
登录 后发表内容