From c832bf2e80ac465e71b7a1c1f7a59d4252030989 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Tue, 05 Aug 2025 17:33:08 +0800
Subject: [PATCH] feat:事件工单滚动条

---
 src/views/dataCenter/components/dataCenterMap.vue |  146 ++++++++++++++++++++++++++----------------------
 1 files changed, 78 insertions(+), 68 deletions(-)

diff --git a/src/views/dataCenter/components/dataCenterMap.vue b/src/views/dataCenter/components/dataCenterMap.vue
index 8efa061..cc787c7 100644
--- a/src/views/dataCenter/components/dataCenterMap.vue
+++ b/src/views/dataCenter/components/dataCenterMap.vue
@@ -7,6 +7,8 @@
 </template>
 
 <script setup>
+import EventBus from '@/utils/eventBus';
+import PanoramaPopup from '@/components/PanoramaPopup/PanoramaPopup.vue';
 import { getMapInfoAPI } from '@/api/dataCenter/dataCenter';
 import { useStore } from 'vuex';
 import { PublicCesium } from '@/utils/cesium/publicCesium';
@@ -14,49 +16,45 @@
 import * as Cesium from 'cesium';
 import EventPopUpBox from '@/hooks/components/EventPopUpBox.vue';
 import { render, nextTick, watch, onMounted, onBeforeUnmount, shallowRef, ref, h } from 'vue';
+import panoramaPoint from '@/assets/images/panorama/panorama-point.png'; //全景图标
 import defaultIcon from '@/assets/images/dataCenter/datamap/eventCompleted.png'; //默认图标
 import activeIcon from '@/assets/images/dataCenter/datamap/activeevent.png'; // 激活图标
+import { getEventActiveImage, getEventImage } from '@/utils/stateToImageMap/event'; //点
 const emit = defineEmits(['lookDetail']);
 const isShow = defineModel('show');
 const viewerRef = shallowRef(null);
 let viewer = null;
-
 const store = useStore();
 const currentAreaPosition = ref({ height: 1987280, latitude: 27.636112, longitude: 115.732975 });
 let handler = null;
-const props = defineProps(['jobId','mapList']);
-
+const props = defineProps(['jobId', 'dotData']);
+let currentClickEntity = null;
 // 存储地图实体引用
 const dataPointEntities = ref([]);
 const isMapInitialized = ref(false); //地图加载
 const dataPointList = ref([]);
 const activeEntity = ref(null); // 当前激活的点
-
 // 获取弹框box
-const detailId = ref('')
+const detailId = ref('');
 const createLabelDom = data => {
-
-  detailId.value = data
+  detailId.value = data;
   const vNode = h(EventPopUpBox, { data, removeLabel, detailClick });
   const tooltipContainer = document.createElement('div');
   tooltipContainer.id = 'mapPopUpBox';
   tooltipContainer.style.position = 'absolute';
   tooltipContainer.style.transform = 'translate(-50%,-125%)';
   tooltipContainer.style.pointerEvents = 'none';
-  document.querySelector('#dataCenterMap').append(tooltipContainer);
+  document.querySelector('#dataCenterMap')?.append(tooltipContainer);
   render(vNode, tooltipContainer);
   return tooltipContainer;
 };
-
-let currentClickEntity = null;
-
 // 弹框位置刷新
 const labelBoxUpdate = () => {
   if (!currentClickEntity) return;
   const mapPopUpBox = document.querySelector('#mapPopUpBox');
   let dom = mapPopUpBox
     ? mapPopUpBox
-    : createLabelDom(currentClickEntity.properties.customData._value.data);
+    : createLabelDom(currentClickEntity.properties?.customData._value.data || currentClickEntity);
   const screenPosition = viewer?.scene.cartesianToCanvasCoordinates(
     currentClickEntity?.position?._value
   );
@@ -66,63 +64,58 @@
     dom.style.display = 'block';
   }
 };
-// 暴露方法给父组件
-defineExpose({
-  labelBoxUpdate
-});
+
 const removeDom = () => {
   const dom = document.querySelector('#mapPopUpBox');
   if (dom && dom.parentNode) {
     dom.parentNode.removeChild(dom);
   }
 };
-
 // 移除弹框标签
 const removeLabel = () => {
   viewer?.scene.postRender.removeEventListener(labelBoxUpdate);
   removeDom();
- 
 };
-
 // 点击去到详情页面
 const detailClick = () => {
-  removeLabel()
+  removeLabel();
   // 给父组件传值
-  emit('update:show', false);
+  // emit('update:show', false);  //关闭地图弹框
   emit('lookDetail', detailId.value);
-}
+};
 
 // 恢复所有点的默认图标
 const restoreAllIcons = () => {
   dataPointEntities.value.forEach(entity => {
     if (entity.billboard) {
-      entity.billboard.image = defaultIcon;
+      const status = entity?.properties?._customData?._value?.data.status;
+      entity.billboard.image =
+        status === 1 || status === null ? defaultIcon : getEventImage(status);
     }
   });
   activeEntity.value = null;
 };
-
 // 左键单机事件
 const singleMachineEvent = async click => {
-  let clickedEntities = viewer?.scene.drillPick(click.position).map(item => item.id);
+  let clickedEntities = click
+    ? viewer?.scene.drillPick(click.position).map(item => item.id)
+    : [currentClickEntity];
   if (!clickedEntities.length) {
     // 点击空白处恢复所有图标并移除弹窗
     restoreAllIcons();
     removeLabel();
     return;
   }
-  
   currentClickEntity = clickedEntities[0];
-  
   // 恢复所有点的默认图标
   restoreAllIcons();
-  
-  // 设置当前点击点为激活状态
   if (currentClickEntity.billboard) {
-    currentClickEntity.billboard.image = activeIcon;
+    const status = currentClickEntity?.properties?._customData?._value?.data.status;
+    currentClickEntity.billboard.image =
+      status === 1 || status === null ? activeIcon : getEventActiveImage(status);
+    currentClickEntity.billboard.scale = 1; // 可选缩放效果
     activeEntity.value = currentClickEntity;
   }
-  
   removeLabel();
   viewer.scene.postRender.addEventListener(labelBoxUpdate);
 };
@@ -133,7 +126,6 @@
   handler = new Cesium.ScreenSpaceEventHandler(viewer?.scene.canvas);
   handler.setInputAction(singleMachineEvent, Cesium.ScreenSpaceEventType.LEFT_CLICK);
 };
-
 // 清除所有数据点实体
 const clearDataPoints = () => {
   if (!viewer) return;
@@ -143,7 +135,6 @@
   dataPointEntities.value = [];
   activeEntity.value = null;
 };
-
 const removeHandler = () => {
   handler?.removeInputAction(Cesium.ScreenSpaceEventType.LEFT_CLICK);
   handler?.destroy();
@@ -152,14 +143,10 @@
 
 const renderDataPoint = mapList => {
   if (!viewer || !mapList?.length) return;
-  
-  // 清除旧实体
   clearDataPoints();
-  
-  // 添加新实体
   mapList.forEach((item, index) => {
-    const entity = viewer.entities.add({
-      id: `dataCenter-point-${index}-${Date.now()}`, 
+    const entity = viewer?.entities.add({
+      id: `dataCenter-point-${index}-${Date.now()}`,
       position: Cesium.Cartesian3.fromDegrees(
         Number(item.metadata.shootPosition.lng),
         Number(item.metadata.shootPosition.lat)
@@ -175,7 +162,7 @@
         pixelOffset: new Cesium.Cartesian2(0, 55),
       },
       billboard: {
-        image: defaultIcon, // 初始为默认图标
+        image: item.status == null || item.status === 1 ? defaultIcon : getEventImage(item.status), // 初始为默认图标
         width: 40,
         height: 40,
         pixelOffset: new Cesium.Cartesian2(0, -15),
@@ -186,11 +173,16 @@
         },
       },
     });
+    // 点击定位点位触发
+    if (props.dotData.id === item.id) {
+      currentClickEntity = entity;
+      activeEntity.value = entity;
+      singleMachineEvent();
+    }
 
     dataPointEntities.value.push(entity);
   });
 };
-
 const initMap = () => {
   if (viewer || isMapInitialized.value) return;
 
@@ -199,7 +191,6 @@
     console.error('地图容器未找到');
     return;
   }
-
   try {
     const publicCesiumInstance = new PublicCesium({
       dom: 'dataCenterMap',
@@ -207,35 +198,32 @@
       terrain: false,
       mapFilter: true,
     });
-
     viewer = publicCesiumInstance.getViewer();
     viewerRef.value = viewer;
 
-    // 相机飞行
-   const { longitude, latitude, height } = currentAreaPosition.value
-	const position = Cartesian3.fromDegrees(longitude, latitude, height)
-	viewerRef.value.camera.flyTo({
-		duration: 0,
-		destination: position,
-		orientation: {
-			heading: Cesium.Math.toRadians(0.0),
-			pitch: Cesium.Math.toRadians(-90.0),
-			roll: 0.0,
-		},
-	})
+    isViewerReady.value = true;
     // 初始化事件处理器
     handlerInit();
-
     isMapInitialized.value = true;
-    console.log('地图初始化完成');
-
-    // 初始化后立即渲染已有数据
     if (dataPointList.value.length > 0) {
       renderDataPoint(dataPointList.value);
     }
   } catch (error) {
     console.error('地图初始化失败:', error);
   }
+};
+const flyToEntity = position => {
+  const longitude = Number(position.lng);
+  const latitude = Number(position.lat);
+  viewer?.camera.flyTo({
+    destination: Cesium.Cartesian3.fromDegrees(longitude, latitude, 1000),
+    duration: 1,
+    orientation: {
+      heading: Cesium.Math.toRadians(0.0),
+      pitch: Cesium.Math.toRadians(-90.0),
+      roll: 0.0,
+    },
+  });
 };
 
 // 地图接口
@@ -244,8 +232,7 @@
   try {
     const res = await getMapInfoAPI(ids);
     dataPointList.value = res.data.data || [];
-
-    // 确保地图已初始化后再渲染
+   
     if (isMapInitialized.value && viewer) {
       renderDataPoint(dataPointList.value);
     }
@@ -253,15 +240,33 @@
     console.error('获取地图数据失败:', error);
   }
 };
+const isViewerReady = ref(false);
 
-watch(() => props.jobId, (newVal) => {
-  if (newVal) {
-    getMapInfoAPIFun(newVal);
-  }
-}, { immediate: true });
+const initEntityOrPopup = data => {
+  //地图点在范围内
+  watch(
+    () => isMapInitialized.value,
+    ready => {
+      if (ready) {
+        flyToEntity(data.metadata.shootPosition);
+        labelBoxUpdate();
+      }
+    },
+    { deep: true, immediate: true } // 初始化时立即执行
+  );
+};
+watch(
+  () => props.jobId,
+  newVal => {
+    if (newVal) {
+      getMapInfoAPIFun(newVal);
+    }
+  },
+  { immediate: true }
+);
 
 // 监听对话框状态
-watch(isShow, (newVal) => {
+watch(isShow, newVal => {
   if (newVal) {
     nextTick(() => {
       initMap();
@@ -286,6 +291,11 @@
   removeHandler();
   clearDataPoints();
 });
+
+// 暴露方法给父组件
+defineExpose({
+  initEntityOrPopup,
+});
 </script>
 
 <style>
@@ -309,4 +319,4 @@
     height: 100%;
   }
 }
-</style>
\ No newline at end of file
+</style>

--
Gitblit v1.9.3