bruce-cesium 4.2.5 → 4.2.6
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/dist/bruce-cesium.es5.js +3 -3
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +2 -2
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/utils/entity-utils.js +1 -1
- package/dist/lib/utils/entity-utils.js.map +1 -1
- package/dist/types/bruce-cesium.d.ts +1 -1
- package/package.json +1 -1
package/dist/bruce-cesium.umd.js
CHANGED
|
@@ -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
|
}
|
|
@@ -25744,7 +25744,7 @@
|
|
|
25744
25744
|
ViewRenderEngine.Render = Render;
|
|
25745
25745
|
})(exports.ViewRenderEngine || (exports.ViewRenderEngine = {}));
|
|
25746
25746
|
|
|
25747
|
-
var VERSION = "4.2.
|
|
25747
|
+
var VERSION = "4.2.6";
|
|
25748
25748
|
|
|
25749
25749
|
exports.VERSION = VERSION;
|
|
25750
25750
|
exports.CesiumParabola = CesiumParabola;
|