@loaders.gl/3d-tiles 4.2.0-alpha.5 → 4.2.0-alpha.6
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/3d-tiles-archive/3d-tiles-archive-archive.js +2 -0
- package/dist/3d-tiles-archive-loader.js +1 -1
- package/dist/dist.dev.js +7059 -5581
- package/dist/dist.min.js +1 -1
- package/dist/index.cjs +18 -5
- package/dist/index.cjs.map +2 -2
- package/dist/lib/classes/helpers/tile-3d-accessor-utils.d.ts +1 -1
- package/dist/lib/classes/tile-3d-batch-table.d.ts +1 -1
- package/dist/lib/classes/tile-3d-batch-table.js +9 -0
- package/dist/lib/classes/tile-3d-feature-table.js +4 -2
- package/dist/lib/parsers/helpers/parse-3d-implicit-tiles.js +1 -1
- package/dist/lib/utils/version.js +1 -1
- package/package.json +14 -10
- package/src/lib/parsers/helpers/parse-3d-implicit-tiles.ts +1 -1
|
@@ -17,6 +17,8 @@ const COMPRESSION_METHODS = {
|
|
|
17
17
|
* Class for handling information about 3tz file
|
|
18
18
|
*/
|
|
19
19
|
export class Tiles3DArchive extends IndexedArchive {
|
|
20
|
+
/** hash info */
|
|
21
|
+
hashTable;
|
|
20
22
|
/**
|
|
21
23
|
* creates Tiles3DArchive handler
|
|
22
24
|
* @param fileProvider - FileProvider with the whole file
|
|
@@ -5,7 +5,7 @@ import { DataViewFile } from '@loaders.gl/loader-utils';
|
|
|
5
5
|
import { parse3DTilesArchive as parse3DTilesArchiveFromProvider } from "./3d-tiles-archive/3d-tiles-archive-parser.js";
|
|
6
6
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
7
7
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
8
|
-
const VERSION = typeof "4.2.0-alpha.
|
|
8
|
+
const VERSION = typeof "4.2.0-alpha.5" !== 'undefined' ? "4.2.0-alpha.5" : 'latest';
|
|
9
9
|
/**
|
|
10
10
|
* Loader for 3tz packages
|
|
11
11
|
*/
|