vesium 1.0.1-beta.35 → 1.0.1-beta.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -20
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,29 +1,42 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="
|
|
2
|
+
<img src="https://github.com/GeoVueJS/vesium/raw/main/assets/logo.svg" align="center" width="15%" />
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
|
-
<h1 align="center">
|
|
5
|
+
<h1 align="center">
|
|
6
|
+
<span style="color:#52B783">V</span><span style="color:#38485D">esium</span>
|
|
7
|
+
</h1>
|
|
6
8
|
|
|
7
|
-
<p align="center">Vue
|
|
9
|
+
<p align="center">Vue Composition API and Vue Components for CesiumJS</p>
|
|
8
10
|
|
|
9
11
|
<p align="center">
|
|
10
|
-
<a href="https://
|
|
11
|
-
<a href="https://www.npmjs.com/package
|
|
12
|
-
<a href="https://github.com/GeoVueJS/vesium" target="__blank"><img
|
|
12
|
+
<a href="https://github.com/GeoVueJS/vesium/releases" target="__blank"><img src="https://img.shields.io/github/v/tag/GeoVueJS/vesium" alt="Github tag"></a>
|
|
13
|
+
<a href="https://www.npmjs.com/package/vesium" target="__blank"><img src="https://img.shields.io/npm/v/vesium?color=a1b858&label=npm" alt="NPM Version"></a>
|
|
14
|
+
<a href="https://github.com/GeoVueJS/vesium/blob/main/LICENSE" target="__blank"><img src="https://img.shields.io/github/license/GeoVueJS/vesium" alt="Github tag"></a>
|
|
15
|
+
<a href="https://github.com/GeoVueJS/vesium" target="__blank"><img alt="GitHub Stars" src="https://img.shields.io/github/stars/GeoVueJS/vesium?style=social"></a>
|
|
13
16
|
</p>
|
|
14
17
|
|
|
15
|
-
>
|
|
18
|
+
<p align="center">
|
|
19
|
+
<a href="https://github.com/GeoVueJS/vesium/blob/main/README.zh-CN.md" target="__blank">中文</a>
|
|
20
|
+
|
|
|
21
|
+
<a href="https://github.com/GeoVueJS/vesium/blob/main/README.md" target="__blank">English</a>
|
|
22
|
+
</p>
|
|
23
|
+
|
|
24
|
+
> 🚧 This project is under active development, and the API may change frequently. Any version may introduce breaking changes.
|
|
25
|
+
|
|
26
|
+
## Documentation
|
|
27
|
+
|
|
28
|
+
To view the documentation, visit <a href="https://cesium.geovue.org" target="__blank">cesium.geovue.org</a>
|
|
16
29
|
|
|
17
30
|
## Features
|
|
18
31
|
|
|
19
|
-
- 🎯 **Intuitive** - VueUse-style API design
|
|
20
|
-
- 💪 **Type
|
|
32
|
+
- 🎯 **Intuitive** - VueUse-style API design familiar to Vue developers
|
|
33
|
+
- 💪 **Type Safe** - Written in TypeScript with full TS support
|
|
21
34
|
- 🏪 **Modular** - Tree-shakeable ESM modules
|
|
22
|
-
- 🌐 **
|
|
35
|
+
- 🌐 **Comprehensive** - Full coverage of common Cesium functionality
|
|
23
36
|
- 🎮 **Interactive** - Rich interactive capabilities with map elements
|
|
24
|
-
- ⚡️ **Lightweight** - No
|
|
37
|
+
- ⚡️ **Lightweight** - No redundant dependencies
|
|
25
38
|
|
|
26
|
-
##
|
|
39
|
+
## Installation
|
|
27
40
|
|
|
28
41
|
```bash
|
|
29
42
|
# npm
|
|
@@ -36,16 +49,14 @@ yarn add cesium @vueuse/core vesium
|
|
|
36
49
|
pnpm add cesium @vueuse/core vesium
|
|
37
50
|
```
|
|
38
51
|
|
|
39
|
-
|
|
40
|
-
<div ref="cesiumContainer" style="width: 100%; height: 100%" />
|
|
41
|
-
</template>
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
## 🌸 Credits
|
|
52
|
+
## Related Projects
|
|
45
53
|
|
|
46
|
-
- [VueUse](https://github.com/vueuse/vueuse) - Collection of Vue Composition Utilities
|
|
47
54
|
- [Cesium](https://github.com/CesiumGS/cesium) - An open-source JavaScript library for world-class 3D globes and maps
|
|
48
55
|
|
|
56
|
+
- [VueUse](https://github.com/vueuse/vueuse) - Collection of essential Vue Composition API utilities
|
|
57
|
+
|
|
58
|
+
- [VitePress](https://github.com/vuejs/vitepress) - Vite & Vue-powered static site generator
|
|
59
|
+
|
|
49
60
|
## 📄 License
|
|
50
61
|
|
|
51
|
-
[MIT](./LICENSE)
|
|
62
|
+
Vesium is released under the [MIT License](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vesium",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.1-beta.
|
|
4
|
+
"version": "1.0.1-beta.37",
|
|
5
5
|
"buildInfo": {
|
|
6
6
|
"name": "Vesium",
|
|
7
7
|
"bundle": true
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"jsdelivr": "./dist/index.iife.min.js"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@vesium/core": "1.0.1-beta.
|
|
37
|
-
"@vesium/shared": "1.0.1-beta.
|
|
36
|
+
"@vesium/core": "1.0.1-beta.37",
|
|
37
|
+
"@vesium/shared": "1.0.1-beta.37"
|
|
38
38
|
},
|
|
39
39
|
"types": "./dist/index.d.ts",
|
|
40
40
|
"unpkg": "./dist/index.iife.min.js"
|