Skip to content

Commit c25a0bc

Browse files
author
opendidi
committed
Initial commit
1 parent 44de727 commit c25a0bc

File tree

181 files changed

+123040
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+123040
-0
lines changed

.env

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# VITE_APP_BASE_URL=/VisualTemplate/
2+
VITE_APP_BASE_URL=/3D/VisualTemplate/

.gitignore

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
25+
*.psd
26+
*.zip

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Vue 3 + Vite
2+
3+
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4+
5+
## Recommended IDE Setup
6+
7+
- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).

index.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<title>Three.js地球地图数据可视化</title>
9+
</head>
10+
11+
<body>
12+
<div id="app"></div>
13+
<script type="module" src="/src/main.js"></script>
14+
</body>
15+
16+
</html>

jsconfig.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES6",
4+
"module": "commonjs",
5+
"allowSyntheticDefaultImports": true,
6+
"baseUrl": "./",
7+
"paths": {
8+
"@/*": ["src/*"]
9+
}
10+
},
11+
"exclude": ["node_modules"]
12+
}

package.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "globe-map",
3+
"private": true,
4+
"version": "1.0.0",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite",
8+
"build": "vite build",
9+
"preview": "vite preview"
10+
},
11+
"dependencies": {
12+
"autofit.js": "^3.1.0",
13+
"d3-geo": "^3.1.0",
14+
"delaunator": "^5.0.0",
15+
"echarts": "^5.5.0",
16+
"gsap": "^3.12.2",
17+
"normalize.css": "^8.0.1",
18+
"point-in-polygon": "^1.1.0",
19+
"three": "0.161.0",
20+
"three.interactive": "^1.7.0",
21+
"tiny-emitter": "^2.1.0",
22+
"uuid": "^9.0.1",
23+
"vue": "^3.2.47",
24+
"vue-echarts": "^6.7.2",
25+
"vue-router": "^4.2.1"
26+
},
27+
"devDependencies": {
28+
"@types/three": "^0.161.0",
29+
"@vitejs/plugin-vue": "^4.1.0",
30+
"sass": "^1.62.1",
31+
"vite": "^4.3.2"
32+
}
33+
}

0 commit comments

Comments
 (0)