@jdultra/threedtiles 11.0.1 → 11.1.1
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 +1 -1
- package/dist/index.html +1 -1
- package/dist/threedtiles.min.js +1 -1
- package/dist/threedtiles.min.js.map +1 -1
- package/dist/tileset/TileLoader.d.ts +4 -0
- package/package.json +1 -1
|
@@ -75,6 +75,10 @@ export class TileLoader {
|
|
|
75
75
|
* @param {Number} geometricError
|
|
76
76
|
*/
|
|
77
77
|
get(abortController: AbortController, tileIdentifier: string | number, path: string, callback: Function, distanceFunction: Function, getSiblings: Function, level: number, sceneZupToYup: boolean, meshZupToYup: boolean, geometricError: number): void;
|
|
78
|
+
/**
|
|
79
|
+
* Invalidates all the unused cached tiles.
|
|
80
|
+
*/
|
|
81
|
+
clear(): void;
|
|
78
82
|
/**
|
|
79
83
|
* unregisters a tile content for a specific tile, removing it from the cache if no other tile is using the same content.
|
|
80
84
|
* @param {string} path the content path/url
|