@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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { parseWebscene } from "./lib/parsers/parse-arcgis-webscene.js";
|
|
2
2
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
3
3
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
4
|
-
const VERSION = typeof "4.3.
|
|
4
|
+
const VERSION = typeof "4.3.1" !== 'undefined' ? "4.3.1" : 'latest';
|
|
5
5
|
/**
|
|
6
6
|
* Loader for ArcGIS WebScene
|
|
7
7
|
* Spec - https://developers.arcgis.com/web-scene-specification/objects/webscene/
|
package/dist/dist.dev.js
CHANGED
|
@@ -14684,31 +14684,35 @@ var __exports__ = (() => {
|
|
|
14684
14684
|
extensions: ["3dSceneLayer.json.gz"]
|
|
14685
14685
|
},
|
|
14686
14686
|
{
|
|
14687
|
-
test:
|
|
14687
|
+
test: /nodepages\/\d+$/,
|
|
14688
14688
|
extensions: [".json.gz"]
|
|
14689
14689
|
},
|
|
14690
14690
|
{
|
|
14691
|
-
test:
|
|
14691
|
+
test: /sublayers\/\d+$/,
|
|
14692
|
+
extensions: ["/3dSceneLayer.json.gz"]
|
|
14693
|
+
},
|
|
14694
|
+
{
|
|
14695
|
+
test: /nodes\/(\d+|root)$/,
|
|
14692
14696
|
extensions: ["/3dNodeIndexDocument.json.gz"]
|
|
14693
14697
|
},
|
|
14694
14698
|
{
|
|
14695
|
-
test:
|
|
14699
|
+
test: /nodes\/\d+\/textures\/.+$/,
|
|
14696
14700
|
extensions: [".jpg", ".png", ".bin.dds.gz", ".ktx", ".ktx2"]
|
|
14697
14701
|
},
|
|
14698
14702
|
{
|
|
14699
|
-
test:
|
|
14703
|
+
test: /nodes\/\d+\/geometries\/\d+$/,
|
|
14700
14704
|
extensions: [".bin.gz", ".draco.gz"]
|
|
14701
14705
|
},
|
|
14702
14706
|
{
|
|
14703
|
-
test:
|
|
14707
|
+
test: /nodes\/\d+\/attributes\/f_\d+\/\d+$/,
|
|
14704
14708
|
extensions: [".bin.gz"]
|
|
14705
14709
|
},
|
|
14706
14710
|
{
|
|
14707
|
-
test:
|
|
14711
|
+
test: /statistics\/f_\d+\/\d+$/,
|
|
14708
14712
|
extensions: [".json.gz"]
|
|
14709
14713
|
},
|
|
14710
14714
|
{
|
|
14711
|
-
test:
|
|
14715
|
+
test: /nodes\/\d+\/shared$/,
|
|
14712
14716
|
extensions: ["/sharedResource.json.gz"]
|
|
14713
14717
|
}
|
|
14714
14718
|
];
|