@jdultra/threedtiles 10.1.9 → 10.1.10

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.
@@ -7,7 +7,7 @@ export class OGC3DTile extends THREE.Object3D<THREE.Object3DEventMap> {
7
7
  /**
8
8
  * @param {Object} [properties] - the properties for this tileset
9
9
  * @param {String} [properties.url] - the url to the parent tileset.json
10
- * @param {String} [properties.queryParams] - optional, path params to add to individual tile urls (starts with "?").
10
+ * @param {Object} [properties.queryParams] - optional, path params to add to individual tile urls
11
11
  * @param {Number} [properties.geometricErrorMultiplier] - the geometric error of the parent. 1.0 by default corresponds to a maxScreenSpaceError of 16
12
12
  * @param {Boolean} [properties.loadOutsideView] - if truthy, tiles otside the camera frustum will be loaded with the least possible amount of detail
13
13
  * @param {TileLoader} [properties.tileLoader] - A tile loader that can be shared among tilesets in order to share a common cache.
@@ -34,7 +34,7 @@ export class OGC3DTile extends THREE.Object3D<THREE.Object3DEventMap> {
34
34
  */
35
35
  constructor(properties?: {
36
36
  url?: string | undefined;
37
- queryParams?: string | undefined;
37
+ queryParams?: Object | undefined;
38
38
  geometricErrorMultiplier?: number | undefined;
39
39
  loadOutsideView?: boolean | undefined;
40
40
  tileLoader?: TileLoader | undefined;
@@ -63,7 +63,15 @@ export class OGC3DTile extends THREE.Object3D<THREE.Object3DEventMap> {
63
63
  proxy: string | undefined;
64
64
  displayErrors: boolean | undefined;
65
65
  displayCopyright: boolean;
66
- queryParams: any;
66
+ queryParams: {
67
+ constructor: Function;
68
+ toString(): string;
69
+ toLocaleString(): string;
70
+ valueOf(): Object;
71
+ hasOwnProperty(v: PropertyKey): boolean;
72
+ isPrototypeOf(v: Object): boolean;
73
+ propertyIsEnumerable(v: PropertyKey): boolean;
74
+ } | undefined;
67
75
  uuid: any;
68
76
  tileLoader: TileLoader;
69
77
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jdultra/threedtiles",
3
- "version": "10.1.9",
3
+ "version": "10.1.10",
4
4
  "description": "An OGC 3DTiles viewer for Three.js",
5
5
  "main": "dist/threedtiles.min.js",
6
6
  "types": "dist/entry.d.ts",