|
@@ -643,7 +643,6 @@ export default {
|
|
|
let Lengd = data.Data[0].Elements.Nodes;
|
|
|
Lengd.forEach((el) => {
|
|
|
if (el.Type == "Image" && el.Num > 1) {
|
|
|
- console.log(el.Num);
|
|
|
this.$store.commit("SETTYPENUM", el.Num);
|
|
|
}
|
|
|
});
|
|
@@ -659,11 +658,13 @@ export default {
|
|
|
this.topologyParser.parseData(data.Data[0].Elements);
|
|
|
// 多边形
|
|
|
this.topologyParser.zoneLegendList.forEach((t) => {
|
|
|
+ t.textItem.color = new SColor("#ffffff")
|
|
|
this.scene.addItem(t);
|
|
|
// t.connect('legendItemClick', t, this.handleClickLegendItem)
|
|
|
});
|
|
|
// 增加文字
|
|
|
this.topologyParser.textMarkerList.forEach((t) => {
|
|
|
+ t.color = new SColor("#ffffff")
|
|
|
this.scene.addItem(t);
|
|
|
});
|
|
|
// 增加图片
|