diff --git a/.inscode b/.inscode index 70c7853df0c162981ebd7cf119d909c807920531..9fec9576d482baaf90d2f47230ce9133cfce99d4 100644 --- a/.inscode +++ b/.inscode @@ -1,4 +1,5 @@ run = "npm i && npm run dev" +language = "node" [deployment] build = "npm i && npm run build" @@ -8,3 +9,6 @@ run = "npm run preview" PATH = "/root/${PROJECT_DIR}/.config/npm/node_global/bin:/root/${PROJECT_DIR}/node_modules/.bin:${PATH}" XDG_CONFIG_HOME = "/root/.config" npm_config_prefix = "/root/${PROJECT_DIR}/.config/npm/node_global" + +[debugger] +program = "main.js" diff --git a/index.html b/index.html index 030a6ff51bfc6f6adcc472f6d8c02db92ce947a8..785d6c1e7f0472b1e0da3df04fc7c48edaf6a31c 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,22 @@ - + - - - - - Vite App - - -
- - - + + + + + + CESIUM + + + + + +
+ + + + \ No newline at end of file diff --git a/package.json b/package.json index aa1c7deb0adb6e6aea5a1380426189ac24eee7a7..cc2472e31bc0c04b0f5eb9d688e6a6e89dd6378b 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "preview": "vite preview --port 4173" }, "dependencies": { + "cesium": "^1.109.0", "guess": "^1.0.2", "vue": "^3.2.37" }, diff --git a/src/App.vue b/src/App.vue index 633a5dfe4e547c48bfa93740a290ba5ba370930a..344baa99f8bc3a101e40938be281f05d8bb27f54 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,47 +1,133 @@ - - + diff --git a/src/main.js b/src/main.js index 90e6400b4d8ad8aba0c1caa53874eb4b81380648..8461739fd10b7654f14c4c09e32e50fce3c9dbab 100644 --- a/src/main.js +++ b/src/main.js @@ -1,6 +1,5 @@ import { createApp } from 'vue' import App from './App.vue' -import './assets/main.css' createApp(App).mount('#app')