From 17a81d641608545682e3f79f7c6090cac48fe81a Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Mon, 15 Sep 2025 18:10:01 +0800
Subject: [PATCH] feat:去除高亮

---
 src/hooks/initMap.js |   55 -------------------------------------------------------
 1 files changed, 0 insertions(+), 55 deletions(-)

diff --git a/src/hooks/initMap.js b/src/hooks/initMap.js
index 2675406..e69de29 100644
--- a/src/hooks/initMap.js
+++ b/src/hooks/initMap.js
@@ -1,55 +0,0 @@
-/*
- * @Author: shuishen 1109946754@qq.com
- * @Date: 2024-10-25 15:09:55
- * @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2024-11-04 18:08:12
- * @FilePath: \bigScreen\src\hooks\initMap.js
- * @Description: 
- * 
- * Copyright (c) 2024 by shuishen, All Rights Reserved. 
- */
-let viewer = null
-const { VITE_APP_BASE } = import.meta.env
-import { useMap } from 'store/map'
-import { nextTick } from 'vue'
-
-export function readyViewer () {
-  const Cesium = DC.getLib('Cesium')
-  const { appContext } = getCurrentInstance()
-  const store = useMap()
-
-  function initMap () {
-    if (viewer) return
-
-    nextTick(() => {
-      DC.ready({
-        baseUrl: `${VITE_APP_BASE}libs/dc-sdk/resources/`
-      }).then(() => {
-
-        viewer = new DC.Viewer('viewer-container')
-
-        const global = appContext.config.globalProperties
-        global.$viewer = viewer
-
-        global.$viewer.zoomToPosition(new DC.Position(
-          115.1048036679409,
-          27.276835758787513,
-          4000,
-          0,
-          -90,
-          0
-        ), () => {
-
-
-          store.setLoadMap(true)
-        })
-      })
-    })
-  }
-
-  initMap()
-
-  return {
-
-  }
-}
\ No newline at end of file

--
Gitblit v1.9.3