page({
data:{
markers:[]
}
})
let customCallouts = {};
this.markers = res.data.list.map(function (item, i) {
customCallouts = {
id: item.coachId,
latitude: item.lat,
longitude: item.lng,
iconPath: _requestConfig.cdn + 'dian2.png',
portrait: item.portrait,
distance: item.distance,
customCallout: {
anchorY: 7,
anchorX: 0,
display: 'ALWAYS'
}
};
return {...customCallouts }
});
拖动地图重新渲染数据的时候,渲染的视图的数据跟this.markers的数据不一致,不知道是bug,还是什么原因。
你好,麻烦具体描述问题流程,提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html