ino-cesium 0.0.16-beta.1 → 0.0.16-beta.2
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/package.json +16 -17
- package/assets/ground-skybox/nx.jpg +0 -0
- package/assets/ground-skybox/ny.jpg +0 -0
- package/assets/ground-skybox/nz.jpg +0 -0
- package/assets/ground-skybox/px.jpg +0 -0
- package/assets/ground-skybox/py.jpg +0 -0
- package/assets/ground-skybox/pz.jpg +0 -0
- package/dist/ino-cesium.css +0 -90
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ino-cesium",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.16-beta.
|
|
4
|
+
"version": "0.0.16-beta.2",
|
|
5
5
|
"author": "koino",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"cesium",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
],
|
|
10
10
|
"exports": {
|
|
11
11
|
".": "./dist/index.js",
|
|
12
|
-
"./ino-css": "./dist/ino-cesium.css"
|
|
12
|
+
"./ino-css": "./dist/assets/css/ino-cesium.css",
|
|
13
|
+
"./assets/": "./dist/assets/"
|
|
13
14
|
},
|
|
14
15
|
"typesVersions": {
|
|
15
16
|
"*": {
|
|
@@ -26,26 +27,24 @@
|
|
|
26
27
|
"assets/*",
|
|
27
28
|
"README.MD"
|
|
28
29
|
],
|
|
29
|
-
"publishConfig": {
|
|
30
|
-
"access": "public"
|
|
31
|
-
},
|
|
32
30
|
"dependencies": {
|
|
33
|
-
"@ino-cesium/analysis": "0.0.16-beta.
|
|
34
|
-
"@ino-cesium/common": "0.0.16-beta.
|
|
35
|
-
"@ino-cesium/draw": "0.0.16-beta.
|
|
36
|
-
"@ino-cesium/effects": "0.0.16-beta.
|
|
37
|
-
"@ino-cesium/layers": "0.0.16-beta.
|
|
38
|
-
"@ino-cesium/material": "0.0.16-beta.
|
|
39
|
-
"@ino-cesium/primitive": "0.0.16-beta.
|
|
31
|
+
"@ino-cesium/analysis": "0.0.16-beta.2",
|
|
32
|
+
"@ino-cesium/common": "0.0.16-beta.2",
|
|
33
|
+
"@ino-cesium/draw": "0.0.16-beta.2",
|
|
34
|
+
"@ino-cesium/effects": "0.0.16-beta.2",
|
|
35
|
+
"@ino-cesium/layers": "0.0.16-beta.2",
|
|
36
|
+
"@ino-cesium/material": "0.0.16-beta.2",
|
|
37
|
+
"@ino-cesium/primitive": "0.0.16-beta.2"
|
|
40
38
|
},
|
|
41
39
|
"peerDependencies": {
|
|
42
40
|
"cesium": "*"
|
|
43
41
|
},
|
|
44
|
-
"types": "./dist/index.d.ts",
|
|
45
42
|
"scripts": {
|
|
46
|
-
"build": "rimraf dist && rollup -c",
|
|
43
|
+
"build": "rimraf dist && rollup -c && pnpm copy-assets",
|
|
47
44
|
"clean": "rimraf dist",
|
|
48
|
-
"release": "pnpm publish --no-git-checks
|
|
49
|
-
"unpublish": "pnpm unpublish ino-cesium --force "
|
|
50
|
-
|
|
45
|
+
"release": "pnpm publish --no-git-checks",
|
|
46
|
+
"unpublish": "pnpm unpublish ino-cesium --force ",
|
|
47
|
+
"copy-assets": "ncp src/assets dist/assets"
|
|
48
|
+
},
|
|
49
|
+
"types": "./dist/index.d.ts"
|
|
51
50
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/ino-cesium.css
DELETED
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
.cesium-widget {
|
|
3
|
-
position: relative;
|
|
4
|
-
}
|
|
5
|
-
/**---------tooltip start---------**/
|
|
6
|
-
.twipsy {
|
|
7
|
-
display: none;
|
|
8
|
-
position: absolute;
|
|
9
|
-
visibility: visible;
|
|
10
|
-
max-width: 300px;
|
|
11
|
-
min-width: 100px;
|
|
12
|
-
padding: 5px;
|
|
13
|
-
font-size: 12px;
|
|
14
|
-
z-index: 1000;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.twipsy-inner {
|
|
18
|
-
padding: 3px 8px;
|
|
19
|
-
background-color: rgba(117, 117, 117, 0.8);
|
|
20
|
-
color: white;
|
|
21
|
-
text-align: left;
|
|
22
|
-
max-width: 300px;
|
|
23
|
-
text-decoration: none;
|
|
24
|
-
-webkit-border-radius: 4px;
|
|
25
|
-
-moz-border-radius: 4px;
|
|
26
|
-
border-radius: 4px;
|
|
27
|
-
border: 1px solid #aaa;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/**---------tooltip end---------**/
|
|
31
|
-
|
|
32
|
-
/**---------draw edit ui start---------**/
|
|
33
|
-
.draw-edit-ui {
|
|
34
|
-
position: fixed;
|
|
35
|
-
left: 0;
|
|
36
|
-
top: 0;
|
|
37
|
-
width: 132px;
|
|
38
|
-
height: 28px;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.draw-edit-icon {
|
|
42
|
-
width: 28px;
|
|
43
|
-
cursor: pointer;
|
|
44
|
-
background: rgba(255, 255, 255, 1);
|
|
45
|
-
border: 1px solid #1296db;
|
|
46
|
-
padding: 2px;
|
|
47
|
-
margin-right: 5px;
|
|
48
|
-
border-radius: 50%;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
/**---------draw edit ui end---------**/
|
|
52
|
-
|
|
53
|
-
/**---------bottom status bar start---------**/
|
|
54
|
-
.bottom-status-bar {
|
|
55
|
-
position: absolute;
|
|
56
|
-
bottom: 0px;
|
|
57
|
-
display: flex;
|
|
58
|
-
width: 100%;
|
|
59
|
-
justify-content: space-between;
|
|
60
|
-
align-items: center;
|
|
61
|
-
z-index: 99999;
|
|
62
|
-
background: rgba(0, 0, 0, 0.4);
|
|
63
|
-
padding: 2px 8px;
|
|
64
|
-
pointer-events: none;
|
|
65
|
-
font-weight: bold;
|
|
66
|
-
height: 30px;
|
|
67
|
-
|
|
68
|
-
div {
|
|
69
|
-
color: #fff;
|
|
70
|
-
border-radius: 5px;
|
|
71
|
-
margin-right: 5px;
|
|
72
|
-
}
|
|
73
|
-
.scale-bar {
|
|
74
|
-
border: 2px solid #ffffff;
|
|
75
|
-
border-radius: 0px !important;
|
|
76
|
-
padding: 0 10px;
|
|
77
|
-
border-top: none !important;
|
|
78
|
-
height: 10px;
|
|
79
|
-
position: relative;
|
|
80
|
-
bottom: -6px;
|
|
81
|
-
display: flex;
|
|
82
|
-
justify-content: center;
|
|
83
|
-
}
|
|
84
|
-
.scale-label {
|
|
85
|
-
margin-top: -15px;
|
|
86
|
-
margin-right: 0px;
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
/**---------bottom status bar end---------**/
|