bruce-cesium 2.5.9 → 2.6.0

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.
@@ -7177,7 +7177,7 @@
7177
7177
  * The maximum memory in MB that can be used by all tilesets.
7178
7178
  * This is distributed evenly between all loaded tilesets.
7179
7179
  */
7180
- TilesetRenderEngine.MAX_TILESET_MEMORY = 1024;
7180
+ TilesetRenderEngine.MAX_TILESET_MEMORY = 1024 * 4;
7181
7181
  /**
7182
7182
  * Watches tilesets in the viewer.
7183
7183
  * This will regulate their max memory param.
@@ -7194,7 +7194,7 @@
7194
7194
  // We'll need to allow user to change this somehow.
7195
7195
  var maxMemory = TilesetRenderEngine.MAX_TILESET_MEMORY;
7196
7196
  // Minimum memory in MB per tileset.
7197
- var minMemory = 80;
7197
+ var minMemory = 200;
7198
7198
  var totalPerTileset = Math.max(this.watched.length ? maxMemory / this.watched.length : maxMemory, minMemory);
7199
7199
  this.watched.forEach(function (x) {
7200
7200
  x.maximumMemoryUsage = totalPerTileset;
@@ -14966,7 +14966,7 @@
14966
14966
  ViewerUtils.CreateWidgets = CreateWidgets;
14967
14967
  })(exports.ViewerUtils || (exports.ViewerUtils = {}));
14968
14968
 
14969
- var VERSION$1 = "2.5.9";
14969
+ var VERSION$1 = "2.6.0";
14970
14970
 
14971
14971
  exports.VERSION = VERSION$1;
14972
14972
  exports.CesiumViewMonitor = CesiumViewMonitor;