|
@@ -539,8 +539,8 @@ export default {
|
|
for (let i = 0; i < splitArr1.length; i++) {
|
|
for (let i = 0; i < splitArr1.length; i++) {
|
|
options.positions.push(splitArr1[i].split(','))
|
|
options.positions.push(splitArr1[i].split(','))
|
|
}
|
|
}
|
|
- let highlight= new CTMapOl.cesiumComponent.Highlight(this.mapType === "3D" ? this.map : this.map.map, options);
|
|
|
|
- console.log(highlight)
|
|
|
|
|
|
+ // let highlight= new CTMapOl.cesiumComponent.Highlight(this.mapType === "3D" ? this.map : this.map.map, options);
|
|
|
|
+ // console.log(highlight)
|
|
})
|
|
})
|
|
},
|
|
},
|
|
focus1(num){
|
|
focus1(num){
|
|
@@ -1333,7 +1333,7 @@ export default {
|
|
mapDom.entities.removeAll();
|
|
mapDom.entities.removeAll();
|
|
// 格式化打点位置信息数据
|
|
// 格式化打点位置信息数据
|
|
let data = this.markPoints.map((item) => {
|
|
let data = this.markPoints.map((item) => {
|
|
- return [`${item.longitude}, ${item.latitude}`, item, this.dropIcon, "10,10"]
|
|
|
|
|
|
+ return [`${item.longitude}, ${item.latitude}`, item, item.categorycode != '1' ? this.dropIcon : require('../assets/offPoint.png'), "10,10"]
|
|
})
|
|
})
|
|
// 打点数据信息
|
|
// 打点数据信息
|
|
let options = {
|
|
let options = {
|
|
@@ -1426,7 +1426,7 @@ export default {
|
|
offset: [-36, -40],
|
|
offset: [-36, -40],
|
|
offsetOrigin: "bottom-right",
|
|
offsetOrigin: "bottom-right",
|
|
size: [100, 100],
|
|
size: [100, 100],
|
|
- src: this.dropIcon,
|
|
|
|
|
|
+ src: v.categorycode != '1' ? this.dropIcon : require('../assets/offPoint.png'),
|
|
}),
|
|
}),
|
|
})
|
|
})
|
|
);
|
|
);
|