From 5c3b1e27195cadbd5757f6bfc496207e6ac3350d Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Sat, 14 Jun 2025 09:19:36 +0800
Subject: [PATCH] feat:地图全景预览
---
src/views/dataCenter/components/dataCenterMap.vue | 29 ++++++++++++++++++-----------
1 files changed, 18 insertions(+), 11 deletions(-)
diff --git a/src/views/dataCenter/components/dataCenterMap.vue b/src/views/dataCenter/components/dataCenterMap.vue
index 2936f99..0b470f1 100644
--- a/src/views/dataCenter/components/dataCenterMap.vue
+++ b/src/views/dataCenter/components/dataCenterMap.vue
@@ -3,10 +3,13 @@
<div class="mapBox">
<div v-if="isShow" id="dataCenterMap" class="ztzf-cesium"></div>
</div>
+
</el-dialog>
</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,8 +17,10 @@
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);
@@ -86,8 +91,11 @@
// 恢复所有点的默认图标
const restoreAllIcons = () => {
dataPointEntities.value.forEach(entity => {
+ // console.log('entity.billboard.image', entity.billboard.image);
+
if (entity.billboard) {
- entity.billboard.image = defaultIcon;
+ entity.billboard.image =
+ props.dotData.resultType === 2 ? getEventImage(entity.status) : defaultIcon;
}
});
activeEntity.value = null;
@@ -103,16 +111,13 @@
removeLabel();
return;
}
-
currentClickEntity = clickedEntities[0];
-
// 恢复所有点的默认图标
restoreAllIcons();
-
- // 设置当前点击点为激活状态
if (currentClickEntity.billboard) {
- currentClickEntity.billboard.image = activeIcon;
- currentClickEntity.billboard.scale = 1 // 可选缩放效果
+ currentClickEntity.billboard.image =
+ props.dotData.resultType === 2 ? getEventImage(currentClickEntity.status) : activeIcon;
+ currentClickEntity.billboard.scale = 1; // 可选缩放效果
activeEntity.value = currentClickEntity;
}
@@ -168,7 +173,7 @@
pixelOffset: new Cesium.Cartesian2(0, 55),
},
billboard: {
- image: defaultIcon, // 初始为默认图标
+ image: props.dotData.resultType === 2 ? getEventImage(item.status) : defaultIcon, // 初始为默认图标
width: 40,
height: 40,
pixelOffset: new Cesium.Cartesian2(0, -15),
@@ -258,9 +263,8 @@
const initEntityOrPopup = data => {
//地图点在范围内
watch(
- [() => isMapInitialized.value],
+ () => isMapInitialized.value,
ready => {
-
if (ready) {
flyToEntity(data.metadata.shootPosition);
labelBoxUpdate();
@@ -297,13 +301,16 @@
}
});
-onMounted(() => {});
+onMounted(() => {
+
+});
onBeforeUnmount(() => {
if (viewer) {
viewer.destroy();
}
removeHandler();
clearDataPoints();
+
});
// 暴露方法给父组件
--
Gitblit v1.9.3