uniapp nvue页面 地图 移动时 不跟随markers 标记移动

markers 赋值时不能 单独赋值 要整体重新赋值 

例如: this.markers[0].longitude = indexmap.longitude
            this.markers[0].latitude = indexmap.latitude

这样是不行的 要这样,

this.markers = [{
                            latitude: this.latitude,
                            longitude: this.longitude,
                            iconPath: '../../../static/local.png',
                            width:15,
                            height:18,
                            callout: {
                                content: pois[0].title,
                                display: 'ALWAYS',
                                padding:10,
                                borderRadius: 10,
                                fontSize: 16,
                                bgColor: "#FC6A03",
                                color: "#ffffff",
                            },
  }],

circles 这个属性 是一样的道理

你可能感兴趣的:(html5,html,css,uni-app)