@ino-cesium/geojson 0.0.23-beta.4

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 ADDED
@@ -0,0 +1,2 @@
1
+ # ino-cesium geojson
2
+ 添加geojson为数据图层
@@ -0,0 +1,5 @@
1
+ import * as Cesium from 'cesium';
2
+
3
+ declare const addGeojsonToViewer: (viewer: Cesium.Viewer) => Cesium.Viewer;
4
+
5
+ export { addGeojsonToViewer };
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ const o=o=>o;export{o as addGeojsonToViewer};
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@ino-cesium/geojson",
3
+ "type": "module",
4
+ "version": "0.0.23-beta.4",
5
+ "author": "koino",
6
+ "keywords": [
7
+ "cesium",
8
+ "ino-cesium",
9
+ "ino-cesium-geojson"
10
+ ],
11
+ "exports": {
12
+ ".": "./dist/index.js"
13
+ },
14
+ "typesVersions": {
15
+ "*": {
16
+ "*": [
17
+ "./src/*",
18
+ "./dist/*"
19
+ ]
20
+ }
21
+ },
22
+ "files": [
23
+ "dist/*.d.ts",
24
+ "dist/*.js",
25
+ "README.MD"
26
+ ],
27
+ "peerDependencies": {
28
+ "cesium": "1.134.0"
29
+ },
30
+ "dependencies": {
31
+ "@ino-cesium/common": "0.0.23-beta.4"
32
+ },
33
+ "scripts": {
34
+ "build": "rimraf dist && rollup -c",
35
+ "clean": "rimraf dist",
36
+ "release": "pnpm publish --no-git-checks",
37
+ "unpublish": "pnpm unpublish @ino-cesium/geojson --force "
38
+ },
39
+ "types": "./dist/index.d.ts"
40
+ }