浏览代码

新增图层全部清除功能

sbj 1 年之前
父节点
当前提交
3686134653
共有 2 个文件被更改,包括 14 次插入2 次删除
  1. 8 0
      src/utils/map/Layer.js
  2. 6 2
      src/views/map/Index.vue

+ 8 - 0
src/utils/map/Layer.js

@@ -4,6 +4,14 @@
 import {setBoat} from '@/utils/map/Boat'
 import {addLayer} from "@/utils/map/ArcgisUtil";
 
+let layerList = ['cb','mt','jjq','dtq','md','sszh','hb','hd','sxdx','2022.1','2022.2','2021.1','2021.2','2020.1','2020.2']
+
+export function closeAllLayer() {
+    for (let i = 0; i < layerList.length;i++) {
+        addLayerByName(layerList[i],false)
+    }
+}
+
 export function addLayerByName(name,isShow){
     switch (name) {
         // 船舶

+ 6 - 2
src/views/map/Index.vue

@@ -22,6 +22,7 @@
             <button @click="test('航标')">航标</button>
             <button @click="test('水下地形')">水下地形</button>
             <button @click="test('白膜')">白膜</button>
+            <button @click="test('关闭全部图层')">关闭全部图层</button>
         </div>
     </div>
 </template>
@@ -31,7 +32,7 @@
     import {pjylLine, djldLine,djldLineAll,onePjylPortLocation,oneDjldPortLocation} from '@/utils/map/WaterPassenger'
     import {setBoat, setBoatPath, onLocationBoat, locationBoat} from '@/utils/map/Boat'
     import {setCenter} from '@/utils/map/Common'
-    import {addLayerByName} from '@/utils/map/Layer'
+    import {addLayerByName,closeAllLayer} from '@/utils/map/Layer'
 
     export default {
         name: "MapHome",
@@ -104,7 +105,7 @@
                         setBoatPath()
                         break
                     case '船舶定位':
-                        locationBoat('413826096')
+                        locationBoat('412374820')
                         break
                     case '初始视角':
                         setCenter();
@@ -145,6 +146,9 @@
                         this.isShowBmLayer = !this.isShowBmLayer
                         addLayerByName('bm',this.isShowBmLayer)
                         break
+                    case '关闭全部图层':
+                        closeAllLayer()
+                        break
                     default:
                 }
             },