@loaders.gl/i3s 4.3.0 → 4.3.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/dist/arcgis-webscene-loader.js +1 -1
- package/dist/dist.dev.js +11 -7
- package/dist/dist.min.js +1 -1
- package/dist/i3s-attribute-loader.js +1 -1
- package/dist/i3s-building-scene-layer-loader.js +1 -1
- package/dist/i3s-content-loader.js +1 -1
- package/dist/i3s-content-worker-node.js +2 -2
- package/dist/i3s-content-worker-node.js.map +1 -1
- package/dist/i3s-content-worker.js +6 -6
- package/dist/i3s-loader.js +1 -1
- package/dist/i3s-node-page-loader.js +1 -1
- package/dist/i3s-slpk-loader.js +1 -1
- package/dist/index.cjs +18 -14
- package/dist/index.cjs.map +2 -2
- package/dist/lib/parsers/parse-slpk/slpk-archieve.d.ts.map +1 -1
- package/dist/lib/parsers/parse-slpk/slpk-archieve.js +11 -7
- package/package.json +13 -13
- package/src/lib/parsers/parse-slpk/slpk-archieve.ts +11 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/i3s",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.2",
|
|
4
4
|
"description": "i3s .",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -42,22 +42,22 @@
|
|
|
42
42
|
"build-worker-node": "esbuild src/workers/i3s-content-worker-node.ts --outfile=dist/i3s-content-worker-node.js --platform=node --target=node16 --minify --bundle --sourcemap --define:__VERSION__=\\\"$npm_package_version\\\""
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@loaders.gl/compression": "4.3.
|
|
46
|
-
"@loaders.gl/crypto": "4.3.
|
|
47
|
-
"@loaders.gl/draco": "4.3.
|
|
48
|
-
"@loaders.gl/images": "4.3.
|
|
49
|
-
"@loaders.gl/loader-utils": "4.3.
|
|
50
|
-
"@loaders.gl/math": "4.3.
|
|
51
|
-
"@loaders.gl/schema": "4.3.
|
|
52
|
-
"@loaders.gl/textures": "4.3.
|
|
53
|
-
"@loaders.gl/tiles": "4.3.
|
|
54
|
-
"@loaders.gl/zip": "4.3.
|
|
45
|
+
"@loaders.gl/compression": "4.3.2",
|
|
46
|
+
"@loaders.gl/crypto": "4.3.2",
|
|
47
|
+
"@loaders.gl/draco": "4.3.2",
|
|
48
|
+
"@loaders.gl/images": "4.3.2",
|
|
49
|
+
"@loaders.gl/loader-utils": "4.3.2",
|
|
50
|
+
"@loaders.gl/math": "4.3.2",
|
|
51
|
+
"@loaders.gl/schema": "4.3.2",
|
|
52
|
+
"@loaders.gl/textures": "4.3.2",
|
|
53
|
+
"@loaders.gl/tiles": "4.3.2",
|
|
54
|
+
"@loaders.gl/zip": "4.3.2",
|
|
55
55
|
"@math.gl/core": "^4.1.0",
|
|
56
56
|
"@math.gl/culling": "^4.1.0",
|
|
57
57
|
"@math.gl/geospatial": "^4.1.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"@loaders.gl/core": "^4.
|
|
60
|
+
"@loaders.gl/core": "^4.3.0"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "b4203b8703f64a38d6f79a3113bc7bb51d45c93a"
|
|
63
63
|
}
|
|
@@ -10,31 +10,35 @@ const PATH_DESCRIPTIONS: {test: RegExp; extensions: string[]}[] = [
|
|
|
10
10
|
extensions: ['3dSceneLayer.json.gz']
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
|
-
test:
|
|
13
|
+
test: /nodepages\/\d+$/,
|
|
14
14
|
extensions: ['.json.gz']
|
|
15
15
|
},
|
|
16
16
|
{
|
|
17
|
-
test:
|
|
17
|
+
test: /sublayers\/\d+$/,
|
|
18
|
+
extensions: ['/3dSceneLayer.json.gz']
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
test: /nodes\/(\d+|root)$/,
|
|
18
22
|
extensions: ['/3dNodeIndexDocument.json.gz']
|
|
19
23
|
},
|
|
20
24
|
{
|
|
21
|
-
test:
|
|
25
|
+
test: /nodes\/\d+\/textures\/.+$/,
|
|
22
26
|
extensions: ['.jpg', '.png', '.bin.dds.gz', '.ktx', '.ktx2']
|
|
23
27
|
},
|
|
24
28
|
{
|
|
25
|
-
test:
|
|
29
|
+
test: /nodes\/\d+\/geometries\/\d+$/,
|
|
26
30
|
extensions: ['.bin.gz', '.draco.gz']
|
|
27
31
|
},
|
|
28
32
|
{
|
|
29
|
-
test:
|
|
33
|
+
test: /nodes\/\d+\/attributes\/f_\d+\/\d+$/,
|
|
30
34
|
extensions: ['.bin.gz']
|
|
31
35
|
},
|
|
32
36
|
{
|
|
33
|
-
test:
|
|
37
|
+
test: /statistics\/f_\d+\/\d+$/,
|
|
34
38
|
extensions: ['.json.gz']
|
|
35
39
|
},
|
|
36
40
|
{
|
|
37
|
-
test:
|
|
41
|
+
test: /nodes\/\d+\/shared$/,
|
|
38
42
|
extensions: ['/sharedResource.json.gz']
|
|
39
43
|
}
|
|
40
44
|
];
|