@@ -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) {
// 船舶
@@ -22,6 +22,7 @@
<button @click="test('航标')">航标</button>
<button @click="test('水下地形')">水下地形</button>
<button @click="test('白膜')">白膜</button>
+ <button @click="test('关闭全部图层')">关闭全部图层</button>
</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')
case '初始视角':
setCenter();
@@ -145,6 +146,9 @@
this.isShowBmLayer = !this.isShowBmLayer
addLayerByName('bm',this.isShowBmLayer)
+ case '关闭全部图层':
+ closeAllLayer()
+ break
default:
}
},