Bladeren bron

地图修改

wangcc 2 jaren geleden
bovenliggende
commit
ff98724d0e
1 gewijzigde bestanden met toevoegingen van 25 en 11 verwijderingen
  1. 25 11
      src/components/amapPow.vue

+ 25 - 11
src/components/amapPow.vue

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