|
@@ -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-03 10:10:26
|
|
|
|
|
|
+ * @LastEditTime: 2022-11-03 15:36:11
|
|
* @FilePath: \castgroup_bigscreen\src\components\amapPow.vue
|
|
* @FilePath: \castgroup_bigscreen\src\components\amapPow.vue
|
|
* @Copyright: Copyright (c) 2016~2022 by wangcc, All Rights Reserved.
|
|
* @Copyright: Copyright (c) 2016~2022 by wangcc, All Rights Reserved.
|
|
-->
|
|
-->
|
|
@@ -109,7 +109,8 @@ export default {
|
|
smallClassProject: [],
|
|
smallClassProject: [],
|
|
// 项目小班红点转边界图
|
|
// 项目小班红点转边界图
|
|
projectPolygonArr: [],
|
|
projectPolygonArr: [],
|
|
- projectIcon:''
|
|
|
|
|
|
+ projectIcon:
|
|
|
|
+ 'http://miniores.hw.hongweisoft.com/mintou/1667460231789_a06fed1519c5e3d206e4ab9148d658e5.png'
|
|
};
|
|
};
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
@@ -479,8 +480,21 @@ export default {
|
|
position: lnglat
|
|
position: lnglat
|
|
});
|
|
});
|
|
this.projectSmallClassArr.push(projectSmallClass);
|
|
this.projectSmallClassArr.push(projectSmallClass);
|
|
|
|
+
|
|
projectSmallClass.on('click', (e) => {
|
|
projectSmallClass.on('click', (e) => {
|
|
console.log(this.leftPage);
|
|
console.log(this.leftPage);
|
|
|
|
+ if (_this.projectPolygonArr) {
|
|
|
|
+ _this.map.remove(_this.projectPolygonArr);
|
|
|
|
+ }
|
|
|
|
+ if (_this.smallMarkers) {
|
|
|
|
+ _this.map.remove(_this.smallMarkers);
|
|
|
|
+ }
|
|
|
|
+ if (_this.treeCompMarkers) {
|
|
|
|
+ _this.map.remove(_this.treeCompMarkers);
|
|
|
|
+ }
|
|
|
|
+ if (_this.treesPolygonArr) {
|
|
|
|
+ _this.map.remove(_this.treesPolygonArr);
|
|
|
|
+ }
|
|
// _this.map.remove(projectSmallClass);
|
|
// _this.map.remove(projectSmallClass);
|
|
smallClassDetail({ id: element.id }).then((res) => {
|
|
smallClassDetail({ id: element.id }).then((res) => {
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
@@ -527,7 +541,7 @@ export default {
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
this.getTreePlant();
|
|
this.getTreePlant();
|
|
- this.getIcon()
|
|
|
|
|
|
+ // this.getIcon();
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
this.initAMap();
|
|
this.initAMap();
|
|
@@ -541,13 +555,13 @@ export default {
|
|
'changeSelectStreet',
|
|
'changeSelectStreet',
|
|
'changeSelectAddr'
|
|
'changeSelectAddr'
|
|
]),
|
|
]),
|
|
- getIcon(){
|
|
|
|
- getProjectIcon('project_icon').then(res =>{
|
|
|
|
- if (res.code == 200) {
|
|
|
|
- this.projectIcon = res.data[0].dictValue
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- },
|
|
|
|
|
|
+ // getIcon() {
|
|
|
|
+ // getProjectIcon('project_icon').then((res) => {
|
|
|
|
+ // if (res.code == 200) {
|
|
|
|
+ // this.projectIcon = res.data[0].dictValue;
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
|
|
+ // },
|
|
setMapLabel(val) {
|
|
setMapLabel(val) {
|
|
let _this = this;
|
|
let _this = this;
|
|
let lanLatArr = [val.longitude, val.latitude];
|
|
let lanLatArr = [val.longitude, val.latitude];
|
|
@@ -1165,7 +1179,7 @@ export default {
|
|
map: this.map,
|
|
map: this.map,
|
|
position: lnglat,
|
|
position: lnglat,
|
|
offset: new AMap.Pixel(0, -30),
|
|
offset: new AMap.Pixel(0, -30),
|
|
- icon: infoIcon,
|
|
|
|
|
|
+ // icon: infoIcon,
|
|
zIndex: 999,
|
|
zIndex: 999,
|
|
topWhenClick: true
|
|
topWhenClick: true
|
|
});
|
|
});
|