点击地图点标记显示信息窗口,点击信息窗口里面的查看图表弹出echarts图表弹窗,好像页面切换多次或者点多次了就有警告然后就崩掉了。。。
//点击点标记弹出信息窗口
AMap.event.addListener(marker,'click',function(e){
console.log(e,this)
infoWindow.setContent(e.target.content);
infoWindow.open(that.map, e.target.getPosition());
//点击查看图表弹出echarts图表
document.getElementsByClassName("showPic")[0].addEventListener("click",function(){
that.showSS = true
that.$nextTick(()=>{
that.drawLine()
})
})
不懂啊
是因为ECharts内存泄漏问题.当关闭echarts图表弹窗的时候,清空图例数据,
关于ECharts内存泄漏问题
vue + Echarts 填坑记(Echarts数据量大,导致浏览器卡顿)