bruce-cesium 4.2.5 → 4.2.7

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.
@@ -2819,7 +2819,7 @@
2819
2819
  if (geometryRadius && (pos3d === null || pos3d === void 0 ? void 0 : pos3d.x)) {
2820
2820
  sphere = Cesium.BoundingSphere.fromPoints([pos3d]);
2821
2821
  // For now making sure it's less than x amount because we had a bug which made it huge.
2822
- if (geometryRadius && geometryRadius < 500 && geometryRadius > 1) {
2822
+ if (geometryRadius && geometryRadius < 500 && geometryRadius > 0.1) {
2823
2823
  sphere.radius = geometryRadius;
2824
2824
  spheres.push(sphere);
2825
2825
  }
@@ -14203,7 +14203,7 @@
14203
14203
  });
14204
14204
  };
14205
14205
  Styler.prototype.getEntityIdsForQueue = function () {
14206
- var BATCH_SIZE = 30;
14206
+ var BATCH_SIZE = 500;
14207
14207
  return this.recordLoadQueue.splice(0, BATCH_SIZE);
14208
14208
  };
14209
14209
  Styler.prototype.getEntityRego = function (entityId) {
@@ -25744,7 +25744,7 @@
25744
25744
  ViewRenderEngine.Render = Render;
25745
25745
  })(exports.ViewRenderEngine || (exports.ViewRenderEngine = {}));
25746
25746
 
25747
- var VERSION = "4.2.5";
25747
+ var VERSION = "4.2.7";
25748
25748
 
25749
25749
  exports.VERSION = VERSION;
25750
25750
  exports.CesiumParabola = CesiumParabola;