bruce-cesium 4.3.8 → 4.4.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.
- package/dist/bruce-cesium.es5.js +5 -4
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +4 -3
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/rendering/render-managers/common/entity-label.js +1 -1
- package/dist/lib/rendering/render-managers/tilesets/tileset-arb-render-manager.js +2 -1
- package/dist/lib/rendering/render-managers/tilesets/tileset-arb-render-manager.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
|
@@ -8566,7 +8566,7 @@
|
|
|
8566
8566
|
// If we're pre-positioned that means the user is hovering over the entity.
|
|
8567
8567
|
// We will keep the height low to avoid looking goofy.
|
|
8568
8568
|
if (_this.prePositioned) {
|
|
8569
|
-
addHeight = distance /
|
|
8569
|
+
addHeight = distance / 24;
|
|
8570
8570
|
}
|
|
8571
8571
|
else {
|
|
8572
8572
|
// If known then calculate based on size.
|
|
@@ -16866,8 +16866,9 @@
|
|
|
16866
16866
|
}
|
|
16867
16867
|
}
|
|
16868
16868
|
if (!rego.entityId) {
|
|
16869
|
+
// 'Building' ones are for legacy CC3D data.
|
|
16869
16870
|
var ACCEPTABLE_PROPS = [
|
|
16870
|
-
"Building_ID", "BuildingID", "BruceId"
|
|
16871
|
+
"Building_ID", "BuildingID", "BruceId", "entityId", "bruceId"
|
|
16871
16872
|
];
|
|
16872
16873
|
for (var _i = 0, ACCEPTABLE_PROPS_1 = ACCEPTABLE_PROPS; _i < ACCEPTABLE_PROPS_1.length; _i++) {
|
|
16873
16874
|
var acceptableId = ACCEPTABLE_PROPS_1[_i];
|
|
@@ -26260,7 +26261,7 @@
|
|
|
26260
26261
|
ViewerUtils.AssertIonToken = AssertIonToken;
|
|
26261
26262
|
})(exports.ViewerUtils || (exports.ViewerUtils = {}));
|
|
26262
26263
|
|
|
26263
|
-
var VERSION = "4.
|
|
26264
|
+
var VERSION = "4.4.0";
|
|
26264
26265
|
|
|
26265
26266
|
exports.VERSION = VERSION;
|
|
26266
26267
|
exports.CesiumParabola = CesiumParabola;
|