| | |
| | | </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'; |
| | |
| | | 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 isMapInitialized = ref(false); //地图加载 |
| | | const dataPointList = ref([]); |
| | | const activeEntity = ref(null); // 当前激活的点 |
| | | |
| | | // 获取弹框box |
| | | const detailId = ref(''); |
| | | const createLabelDom = data => { |
| | |
| | | render(vNode, tooltipContainer); |
| | | return tooltipContainer; |
| | | }; |
| | | |
| | | // 弹框位置刷新 |
| | | const labelBoxUpdate = () => { |
| | | if (!currentClickEntity) return; |
| | |
| | | const detailClick = () => { |
| | | 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; |
| | |
| | | removeLabel(); |
| | | return; |
| | | } |
| | | |
| | | currentClickEntity = clickedEntities[0]; |
| | | |
| | | // 恢复所有点的默认图标 |
| | | restoreAllIcons(); |
| | | |
| | | // 设置当前点击点为激活状态 |
| | | if (currentClickEntity.billboard) { |
| | | currentClickEntity.billboard.image = activeIcon; |
| | | currentClickEntity.billboard.scale = 1 // 可选缩放效果 |
| | | 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); |
| | | }; |
| | |
| | | handler = new Cesium.ScreenSpaceEventHandler(viewer?.scene.canvas); |
| | | handler.setInputAction(singleMachineEvent, Cesium.ScreenSpaceEventType.LEFT_CLICK); |
| | | }; |
| | | |
| | | // 清除所有数据点实体 |
| | | const clearDataPoints = () => { |
| | | if (!viewer) return; |
| | |
| | | dataPointEntities.value = []; |
| | | activeEntity.value = null; |
| | | }; |
| | | |
| | | const removeHandler = () => { |
| | | handler?.removeInputAction(Cesium.ScreenSpaceEventType.LEFT_CLICK); |
| | | handler?.destroy(); |
| | |
| | | |
| | | const renderDataPoint = mapList => { |
| | | if (!viewer || !mapList?.length) return; |
| | | |
| | | // 清除旧实体 |
| | | clearDataPoints(); |
| | | |
| | | // 添加新实体 |
| | | mapList.forEach((item, index) => { |
| | | const entity = viewer?.entities.add({ |
| | | id: `dataCenter-point-${index}-${Date.now()}`, |
| | |
| | | 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), |
| | |
| | | viewerRef.value = viewer; |
| | | |
| | | isViewerReady.value = true; |
| | | |
| | | // 初始化事件处理器 |
| | | handlerInit(); |
| | | isMapInitialized.value = true; |
| | | console.log('地图初始化完成'); |
| | | // 初始化后立即渲染已有数据 |
| | | if (dataPointList.value.length > 0) { |
| | | renderDataPoint(dataPointList.value); |
| | | } |
| | |
| | | try { |
| | | const res = await getMapInfoAPI(ids); |
| | | dataPointList.value = res.data.data || []; |
| | | // 确保地图已初始化后再渲染 |
| | | |
| | | if (isMapInitialized.value && viewer) { |
| | | renderDataPoint(dataPointList.value); |
| | | } |
| | |
| | | }; |
| | | const isViewerReady = ref(false); |
| | | |
| | | /** |
| | | * 初始化标注添加 |
| | | * @param data 数据 |
| | | */ |
| | | const initEntityOrPopup = data => { |
| | | //地图点在范围内 |
| | | watch( |
| | | [() => isMapInitialized.value], |
| | | () => isMapInitialized.value, |
| | | ready => { |
| | | |
| | | if (ready) { |
| | | flyToEntity(data.metadata.shootPosition); |
| | | labelBoxUpdate(); |