bruce-cesium 6.8.7 → 6.8.8

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.
@@ -13675,7 +13675,7 @@
13675
13675
  viaCdn: false
13676
13676
  }) + "?generation=" + params.tileset.generateVersion;
13677
13677
  }
13678
- const cTileset = await createTileset(loadUrl, null, params.noMemoryLimit);
13678
+ const cTileset = await createTileset(loadUrl, params.skipLevelOfDetail ? { skipLevelOfDetail: true } : null, params.noMemoryLimit);
13679
13679
  params.viewer.scene.primitives.add(cTileset);
13680
13680
  watchTilesetDateRange(params.viewer, cTileset, params.tileset);
13681
13681
  OnTilesetReady(cTileset).then(() => {
@@ -14414,7 +14414,8 @@
14414
14414
  accountId: accountId,
14415
14415
  viaCdn: viaCdn,
14416
14416
  noMemoryLimit: this.item["noMaximumMemory"],
14417
- modelSpace: this.modelSpace
14417
+ modelSpace: this.modelSpace,
14418
+ skipLevelOfDetail: true
14418
14419
  });
14419
14420
  if (this.disposed) {
14420
14421
  this.doDispose();
@@ -37445,7 +37446,7 @@
37445
37446
  StyleUtils.ApplyTypeStyle = ApplyTypeStyle;
37446
37447
  })(exports.StyleUtils || (exports.StyleUtils = {}));
37447
37448
 
37448
- const VERSION = "6.8.7";
37449
+ const VERSION = "6.8.8";
37449
37450
  /**
37450
37451
  * Updates the environment instance used by bruce-cesium to one specified.
37451
37452
  * This can be used to ensure that the instance a parent is referencing is shared between bruce-cesium, bruce-models, and the parent app.