|
@@ -3,7 +3,7 @@
|
|
* @Author: wangcc
|
|
* @Author: wangcc
|
|
* @Date: 2022-10-19 09:32:46
|
|
* @Date: 2022-10-19 09:32:46
|
|
* @LastEditors: wangcc
|
|
* @LastEditors: wangcc
|
|
- * @LastEditTime: 2022-11-01 17:56:32
|
|
|
|
|
|
+ * @LastEditTime: 2022-11-02 09:52:35
|
|
* @FilePath: \castgroup_bigscreen\src\components\amapTow.vue
|
|
* @FilePath: \castgroup_bigscreen\src\components\amapTow.vue
|
|
* @Copyright: Copyright (c) 2016~2022 by wangcc, All Rights Reserved.
|
|
* @Copyright: Copyright (c) 2016~2022 by wangcc, All Rights Reserved.
|
|
-->
|
|
-->
|
|
@@ -103,7 +103,9 @@ export default {
|
|
districtData: {},
|
|
districtData: {},
|
|
streetData: {},
|
|
streetData: {},
|
|
// 项目小班数
|
|
// 项目小班数
|
|
- projectSmallClassArr: []
|
|
|
|
|
|
+ projectSmallClassArr: [],
|
|
|
|
+ // 项目小班边界
|
|
|
|
+ smallClassProject: []
|
|
};
|
|
};
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
@@ -187,12 +189,15 @@ export default {
|
|
this.mapPolygon();
|
|
this.mapPolygon();
|
|
if (val == 'forest' || val == 'treeSpecies') {
|
|
if (val == 'forest' || val == 'treeSpecies') {
|
|
this.getProjectList();
|
|
this.getProjectList();
|
|
|
|
+ }else{
|
|
|
|
+ this.map.remove(this.projectSmallClassArr)
|
|
}
|
|
}
|
|
if (val != 'forest') {
|
|
if (val != 'forest') {
|
|
this.map.remove(this.forestMarkerArr);
|
|
this.map.remove(this.forestMarkerArr);
|
|
this.map.remove(this.smallClassNArr);
|
|
this.map.remove(this.smallClassNArr);
|
|
this.map.remove(this.smallClassPolygonArr);
|
|
this.map.remove(this.smallClassPolygonArr);
|
|
this.map.remove(this.projectMarkerArr);
|
|
this.map.remove(this.projectMarkerArr);
|
|
|
|
+
|
|
}
|
|
}
|
|
if (val != 'treeSpecies') {
|
|
if (val != 'treeSpecies') {
|
|
this.map.remove(this.forestMarkerArr);
|
|
this.map.remove(this.forestMarkerArr);
|
|
@@ -211,9 +216,6 @@ export default {
|
|
'$store.state.addr.mapLevel': {
|
|
'$store.state.addr.mapLevel': {
|
|
handler(val) {
|
|
handler(val) {
|
|
console.log(val);
|
|
console.log(val);
|
|
- if (val == 'province') {
|
|
|
|
- this.changeSelectDistrict({});
|
|
|
|
- }
|
|
|
|
if (val === 'street') {
|
|
if (val === 'street') {
|
|
this.getSmallClass();
|
|
this.getSmallClass();
|
|
}
|
|
}
|
|
@@ -231,6 +233,9 @@ export default {
|
|
if (_this.smallMarkers) {
|
|
if (_this.smallMarkers) {
|
|
_this.map.remove(_this.smallMarkers);
|
|
_this.map.remove(_this.smallMarkers);
|
|
}
|
|
}
|
|
|
|
+ if (this.smallClassProject) {
|
|
|
|
+ this.map.remove(this.smallClassProject);
|
|
|
|
+ }
|
|
let lanLatArr = [val.longitude, val.latitude];
|
|
let lanLatArr = [val.longitude, val.latitude];
|
|
let imgList = [];
|
|
let imgList = [];
|
|
if (val.imageList.length > 0) {
|
|
if (val.imageList.length > 0) {
|
|
@@ -344,7 +349,6 @@ export default {
|
|
});
|
|
});
|
|
});
|
|
});
|
|
this.smallMarkers.push(_this.smallMarker);
|
|
this.smallMarkers.push(_this.smallMarker);
|
|
- console.log(this.$store.state.addr.mapLevel);
|
|
|
|
if (
|
|
if (
|
|
this.$store.state.addr.mapLevel == 'city' ||
|
|
this.$store.state.addr.mapLevel == 'city' ||
|
|
this.$store.state.addr.mapLevel == 'province'
|
|
this.$store.state.addr.mapLevel == 'province'
|
|
@@ -388,10 +392,21 @@ export default {
|
|
} else {
|
|
} else {
|
|
this.switch2AreaNode(val.countyCode.substring(0, 6));
|
|
this.switch2AreaNode(val.countyCode.substring(0, 6));
|
|
}
|
|
}
|
|
- } else if (val.name == false && this.smallMarker) {
|
|
|
|
- this.map.on('rightclick', function (e) {
|
|
|
|
- _this.map.remove(_this.smallMarkers);
|
|
|
|
|
|
+ }
|
|
|
|
+ if (val.mapInfo) {
|
|
|
|
+ let polyData = JSON.parse(val.mapInfo);
|
|
|
|
+ let smallClassPolygon = new AMap.Polygon({
|
|
|
|
+ map: _this.map,
|
|
|
|
+ path: polyData.features[0].geometry.coordinates,
|
|
|
|
+ strokeOpacity: 1,
|
|
|
|
+ fillOpacity: 0.5,
|
|
|
|
+ strokeColor: 'red',
|
|
|
|
+ strokeWeight: 2,
|
|
|
|
+ zIndex: 999,
|
|
|
|
+ cursor: 'pointer',
|
|
|
|
+ fillColor: 'red'
|
|
});
|
|
});
|
|
|
|
+ this.smallClassProject.push(smallClassPolygon);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -626,6 +641,9 @@ export default {
|
|
if (_this.smallMarkers.length > 0) {
|
|
if (_this.smallMarkers.length > 0) {
|
|
_this.map.remove(_this.smallMarkers);
|
|
_this.map.remove(_this.smallMarkers);
|
|
}
|
|
}
|
|
|
|
+ if (this.smallClassProject) {
|
|
|
|
+ this.map.remove(this.smallClassProject);
|
|
|
|
+ }
|
|
// if (_this.treeCompMarkers.length > 0) {
|
|
// if (_this.treeCompMarkers.length > 0) {
|
|
// _this.map.remove(_this.treeCompMarkers);
|
|
// _this.map.remove(_this.treeCompMarkers);
|
|
// }
|
|
// }
|
|
@@ -852,33 +870,32 @@ export default {
|
|
fillOpacity: 0 //填充透明度
|
|
fillOpacity: 0 //填充透明度
|
|
});
|
|
});
|
|
let areaPolygon = areaNode.getParentFeature();
|
|
let areaPolygon = areaNode.getParentFeature();
|
|
- // 绘制父级蒙版
|
|
|
|
|
|
+ // 绘制父级蒙版
|
|
// if (this.$store.state.addr.mapLevel == 'province' || this.$store.state.addr.mapLevel == 'city') {
|
|
// if (this.$store.state.addr.mapLevel == 'province' || this.$store.state.addr.mapLevel == 'city') {
|
|
- let outer = [
|
|
|
|
- new AMap.LngLat(-360, 90, true),
|
|
|
|
- new AMap.LngLat(-360, -90, true),
|
|
|
|
- new AMap.LngLat(360, -90, true),
|
|
|
|
- new AMap.LngLat(360, 90, true)
|
|
|
|
- ];
|
|
|
|
- let areaPolygonArr = [];
|
|
|
|
- areaPolygon.geometry.coordinates.forEach((element) => {
|
|
|
|
- areaPolygonArr.push(element[0]);
|
|
|
|
- });
|
|
|
|
- let holes = areaPolygonArr;
|
|
|
|
- let pathArray = [outer];
|
|
|
|
- pathArray.push.apply(pathArray, holes);
|
|
|
|
- this.polygon = new AMap.Polygon({
|
|
|
|
- pathL: pathArray,
|
|
|
|
- map: this.map,
|
|
|
|
- strokeColor: '#00eeff',
|
|
|
|
- strokeWeight: 1,
|
|
|
|
- fillColor: '#0c1b05', // 遮罩背景色
|
|
|
|
- fillOpacity: 0.8,
|
|
|
|
- height: 10000
|
|
|
|
- });
|
|
|
|
- this.polygon.setPath(pathArray);
|
|
|
|
|
|
+ let outer = [
|
|
|
|
+ new AMap.LngLat(-360, 90, true),
|
|
|
|
+ new AMap.LngLat(-360, -90, true),
|
|
|
|
+ new AMap.LngLat(360, -90, true),
|
|
|
|
+ new AMap.LngLat(360, 90, true)
|
|
|
|
+ ];
|
|
|
|
+ let areaPolygonArr = [];
|
|
|
|
+ areaPolygon.geometry.coordinates.forEach((element) => {
|
|
|
|
+ areaPolygonArr.push(element[0]);
|
|
|
|
+ });
|
|
|
|
+ let holes = areaPolygonArr;
|
|
|
|
+ let pathArray = [outer];
|
|
|
|
+ pathArray.push.apply(pathArray, holes);
|
|
|
|
+ this.polygon = new AMap.Polygon({
|
|
|
|
+ pathL: pathArray,
|
|
|
|
+ map: this.map,
|
|
|
|
+ strokeColor: '#00eeff',
|
|
|
|
+ strokeWeight: 1,
|
|
|
|
+ fillColor: '#0c1b05', // 遮罩背景色
|
|
|
|
+ fillOpacity: 0.8,
|
|
|
|
+ height: 10000
|
|
|
|
+ });
|
|
|
|
+ this.polygon.setPath(pathArray);
|
|
// }
|
|
// }
|
|
-
|
|
|
|
|
|
|
|
if (this.leftPage == 'forest' || this.leftPage == 'treeSpecies') {
|
|
if (this.leftPage == 'forest' || this.leftPage == 'treeSpecies') {
|
|
this.getProjectList();
|
|
this.getProjectList();
|