From 7d1da5ab8707b1ec2f8b23d1ed5436d6121740c9 Mon Sep 17 00:00:00 2001 From: cbwu <504-wuchengbo@htsdfp.com> Date: Thu, 7 Mar 2024 16:34:50 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20Cesium=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .prettierrc.json | 18 +-- index.html | 39 +++++- package.json | 1 + pnpm-lock.yaml | 200 ++++++++++++++++++++++++++++- src/App.vue | 17 ++- src/components/map/SceneViewer.vue | 58 +++++++++ src/global.d.ts | 12 ++ src/main.ts | 6 +- src/utils/map/TDTProvider.ts | 1 + tsconfig.json | 2 +- 10 files changed, 335 insertions(+), 19 deletions(-) create mode 100644 src/components/map/SceneViewer.vue create mode 100644 src/global.d.ts create mode 100644 src/utils/map/TDTProvider.ts diff --git a/.prettierrc.json b/.prettierrc.json index f0a09ed..10b1be6 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,9 +1,9 @@ -{ - "singleQuote": true, - "semi": false, - "bracketSpacing": true, - "htmlWhitespaceSensitivity": "ignore", - "endOfLine": "auto", - "trailingComma": "all", - "tabWidth": 2 -} \ No newline at end of file +{ + "singleQuote": true, + "semi": false, + "bracketSpacing": true, + "htmlWhitespaceSensitivity": "ignore", + "endOfLine": "auto", + "trailingComma": "all", + "tabWidth": 2 +} diff --git a/index.html b/index.html index dde16aa..859c4c4 100644 --- a/index.html +++ b/index.html @@ -5,9 +5,46 @@