|
|
@ -62,9 +62,8 @@ export class MarkerCluster { |
|
|
|
// e.extData.latitude = lnglat[1];
|
|
|
|
//});
|
|
|
|
marksAddInGraph(_data); |
|
|
|
|
|
|
|
if (!_data) return; |
|
|
|
if (!Array.isArray(data)) data = [_data]; |
|
|
|
if (!Array.isArray(_data)) _data = [_data]; |
|
|
|
|
|
|
|
this.refreshLayer(_id, _data); |
|
|
|
} |
|
|
@ -118,7 +117,7 @@ export class MarkerCluster { |
|
|
|
this.dataInfo[_id] = _data; |
|
|
|
this.data.push(..._data); |
|
|
|
if(aryPoints.length > 0){ |
|
|
|
map2d.addPointByArr( |
|
|
|
Vue.prototype.mapIns.addPointByArr( |
|
|
|
{pointList:aryPoints}, // 点位数据数组(按以下规范组装)
|
|
|
|
_id, // jhlayers 当前添加的数据 唯一标识(删除该图层时也会用到)//./事件专题/交通事故.svg
|
|
|
|
true // 当前新加图层是否启用聚合效果
|
|
|
|