From 7fc39e1acd7e8e436eae76250399a64179428620 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Thu, 21 Nov 2024 12:21:02 +0800
Subject: [PATCH] 应急空间点击显示图片

---
 src/pages/layout/components/scomponents/layersControl.vue |  178 +++++++++++++++++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 166 insertions(+), 12 deletions(-)

diff --git a/src/pages/layout/components/scomponents/layersControl.vue b/src/pages/layout/components/scomponents/layersControl.vue
index 9891b25..9bbf702 100644
--- a/src/pages/layout/components/scomponents/layersControl.vue
+++ b/src/pages/layout/components/scomponents/layersControl.vue
@@ -90,6 +90,7 @@
 const closePanoramaPopup = () => {
   panoramaShow.value = false
 }
+let addPupoLayers = {}
 
 const data = [
   {
@@ -154,7 +155,31 @@
         backgroundIcon: VITE_APP_BASE + 'img/mapicon/yjc.png',
         className: 'yjc-box',
         showPanel: false,
-        layerName: 'yjc'
+        layerName: 'yjc',
+        incident: (e) => {
+          const { attrParams } = e.overlay
+          // 删除
+          destroy()
+          if (!attrParams.imageUrl) {
+            return
+          }
+          addPupoLayers[attrParams.name] = new DC.HtmlLayer(attrParams.name)
+          window.$viewer.addLayer(addPupoLayers[attrParams.name])
+          let iconEl = `<div class="marsBlueGradientPnl">
+                  <img src="${attrParams.imageUrl}" width="160" height="160" />
+                </div>`
+          let divIcon = new DC.DivIcon(
+            new DC.Position(attrParams.lng, attrParams.lat, 64),
+            `<div class="public-map-popup-two">
+                    ${iconEl}
+                  </div>`
+          )
+          let incident = () => {
+            destroy()
+          }
+          divIcon.on(DC.MouseEventType.CLICK, incident)
+          addPupoLayers[attrParams.name].addOverlay(divIcon)
+        }
       },
       {
         id: '3-2',
@@ -169,7 +194,31 @@
         backgroundIcon: VITE_APP_BASE + 'img/mapicon/ysf.png',
         className: 'ysf-box',
         showPanel: false,
-        layerName: 'fm'
+        layerName: 'fm',
+        incident: (e) => {
+          const { attrParams } = e.overlay
+          // 删除
+          destroy()
+          if (!attrParams.imageUrl) {
+            return
+          }
+          addPupoLayers[attrParams.name] = new DC.HtmlLayer(attrParams.name)
+          window.$viewer.addLayer(addPupoLayers[attrParams.name])
+          let iconEl = `<div class="marsBlueGradientPnl">
+                  <img src="${attrParams.imageUrl}" width="160" height="160" />
+                </div>`
+          let divIcon = new DC.DivIcon(
+            new DC.Position(attrParams.lng, attrParams.lat, 64),
+            `<div class="public-map-popup-two">
+                    ${iconEl}
+                  </div>`
+          )
+          let incident = () => {
+            destroy()
+          }
+          divIcon.on(DC.MouseEventType.CLICK, incident)
+          addPupoLayers[attrParams.name].addOverlay(divIcon)
+        }
       },
 
       {
@@ -230,7 +279,31 @@
           type: 4,
           size: 1000
         },
-        layerName: 'wstsbz'
+        layerName: 'wstsbz',
+        incident: (e) => {
+          const { attrParams } = e.overlay
+          // 删除
+          destroy()
+          if (!attrParams.imageUrl) {
+            return
+          }
+          addPupoLayers[attrParams.name] = new DC.HtmlLayer(attrParams.name)
+          window.$viewer.addLayer(addPupoLayers[attrParams.name])
+          let iconEl = `<div class="marsBlueGradientPnl">
+                  <img src="${attrParams.imageUrl}" width="160" height="160" />
+                </div>`
+          let divIcon = new DC.DivIcon(
+            new DC.Position(attrParams.lng, attrParams.lat, 64),
+            `<div class="public-map-popup-two">
+                    ${iconEl}
+                  </div>`
+          )
+          let incident = () => {
+            destroy()
+          }
+          divIcon.on(DC.MouseEventType.CLICK, incident)
+          addPupoLayers[attrParams.name].addOverlay(divIcon)
+        }
       },
 
       {
@@ -246,7 +319,31 @@
         backgroundIcon: VITE_APP_BASE + 'img/mapicon/sk.png',
         className: 'sk-box',
         showPanel: false,
-        layerName: 'sk'
+        layerName: 'sk',
+        incident: (e) => {
+          const { attrParams } = e.overlay
+          // 删除
+          destroy()
+          if (!attrParams.imageUrl) {
+            return
+          }
+          addPupoLayers[attrParams.name] = new DC.HtmlLayer(attrParams.name)
+          window.$viewer.addLayer(addPupoLayers[attrParams.name])
+          let iconEl = `<div class="marsBlueGradientPnl">
+                  <img src="${attrParams.imageUrl}" width="160" height="160" />
+                </div>`
+          let divIcon = new DC.DivIcon(
+            new DC.Position(attrParams.lng, attrParams.lat, 64),
+            `<div class="public-map-popup-two">
+                    ${iconEl}
+                  </div>`
+          )
+          let incident = () => {
+            destroy()
+          }
+          divIcon.on(DC.MouseEventType.CLICK, incident)
+          addPupoLayers[attrParams.name].addOverlay(divIcon)
+        }
       },
 
       {
@@ -262,7 +359,31 @@
         backgroundIcon: VITE_APP_BASE + 'img/mapicon/yjb.png',
         className: 'yjb-box',
         showPanel: false,
-        layerName: 'yjb'
+        layerName: 'yjb',
+        incident: (e) => {
+          const { attrParams } = e.overlay
+          // 删除
+          destroy()
+          if (!attrParams.imageUrl) {
+            return
+          }
+          addPupoLayers[attrParams.name] = new DC.HtmlLayer(attrParams.name)
+          window.$viewer.addLayer(addPupoLayers[attrParams.name])
+          let iconEl = `<div class="marsBlueGradientPnl">
+                  <img src="${attrParams.imageUrl}" width="160" height="160" />
+                </div>`
+          let divIcon = new DC.DivIcon(
+            new DC.Position(attrParams.lng, attrParams.lat, 64),
+            `<div class="public-map-popup-two">
+                    ${iconEl}
+                  </div>`
+          )
+          let incident = () => {
+            destroy()
+          }
+          divIcon.on(DC.MouseEventType.CLICK, incident)
+          addPupoLayers[attrParams.name].addOverlay(divIcon)
+        }
       },
 
       {
@@ -278,7 +399,31 @@
         backgroundIcon: VITE_APP_BASE + 'img/mapicon/xfs.png',
         className: 'xfs-box',
         showPanel: false,
-        layerName: 'xfs'
+        layerName: 'xfs',
+        incident: (e) => {
+          const { attrParams } = e.overlay
+          // 删除
+          destroy()
+          if (!attrParams.imageUrl) {
+            return
+          }
+          addPupoLayers[attrParams.name] = new DC.HtmlLayer(attrParams.name)
+          window.$viewer.addLayer(addPupoLayers[attrParams.name])
+          let iconEl = `<div class="marsBlueGradientPnl">
+                  <img src="${attrParams.imageUrl}" width="160" height="160" />
+                </div>`
+          let divIcon = new DC.DivIcon(
+            new DC.Position(attrParams.lng, attrParams.lat, 64),
+            `<div class="public-map-popup-two">
+                    ${iconEl}
+                  </div>`
+          )
+          let incident = () => {
+            destroy()
+          }
+          divIcon.on(DC.MouseEventType.CLICK, incident)
+          addPupoLayers[attrParams.name].addOverlay(divIcon)
+        }
       }
     ]
   },
@@ -346,7 +491,6 @@
     incident: (e) => {
       const { attrParams } = e.overlay
       panoramaTitle.value = attrParams.name
-
       if (
         attrParams.url.indexOf("http://vr.jxpskj.com:180") != -1
       ) {
@@ -355,7 +499,6 @@
           "/panorama"
         )
       }
-
       panoramaUrl.value = attrParams.url
       panoramaShow.value = true
     }
@@ -463,7 +606,8 @@
 
               divIcon.attrParams = i
 
-              let incident = () => { }
+              let incident = () => {
+              }
 
               if (item.incident) incident = item.incident
 
@@ -501,7 +645,7 @@
           addTileLayers[item.layerName] = new DC.VectorLayer(item.layerName)
           window.$viewer.addLayer(addTileLayers[item.layerName])
 
-          function computeCircle (radius) {
+          function computeCircle(radius) {
             var positions = []
             for (var i = 0; i < 360; i++) {
               var radians = DC.Math.toRadians(i)
@@ -544,7 +688,7 @@
   })
 }
 
-function findObjectById (data, id) {
+function findObjectById(data, id) {
   // 遍历数据数组
   for (let i = 0; i < data.length; i++) {
     const item = data[i]
@@ -602,7 +746,15 @@
 // watch(sharedData, (newValue) => {
 // });
 
-
+// 销毁
+function destroy() {
+  tileLayers && window.$viewer.removeLayer(tileLayers)
+  let arr = Object.keys(addPupoLayers)
+  arr.filter(i => i != 'hgyq').forEach(i => {
+    addPupoLayers[i] && window.$viewer.removeLayer(addPupoLayers[i])
+  })
+  addPupoLayers = {}
+}
 
 onUnmounted(() => {
   tileLayers && window.$viewer.removeLayer(tileLayers)
@@ -610,6 +762,8 @@
   arr.filter(i => i != 'hgyq').forEach(i => {
     addTileLayers[i] && window.$viewer.removeLayer(addTileLayers[i])
   })
+  // 弹窗销毁
+  destroy()
 
   EventBus.off('restHandleCheckChange', restHandleCheckChange)
   EventBus.off('restHandleDelChange', restHandleDelChange)

--
Gitblit v1.9.3