bruce-cesium 6.2.5 → 6.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.
- package/dist/bruce-cesium.es5.js +6 -2
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +5 -1
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/rendering/tileset-styler.js +4 -0
- package/dist/lib/rendering/tileset-styler.js.map +1 -1
- package/dist/types/bruce-cesium.d.ts +1 -1
- package/package.json +2 -2
package/dist/bruce-cesium.umd.js
CHANGED
|
@@ -16574,6 +16574,10 @@
|
|
|
16574
16574
|
* @param entities If an object is not available for a supplied Entity ID, then the cache for it is removed.
|
|
16575
16575
|
*/
|
|
16576
16576
|
SetEntityCache(entityIds, entities) {
|
|
16577
|
+
if (!this.entityGatherer) {
|
|
16578
|
+
console.warn("TilesetStyler: EntityGatherer not initialized, cannot set entity cache.");
|
|
16579
|
+
return;
|
|
16580
|
+
}
|
|
16577
16581
|
// Turn the Entities array into an accessible dictionary.
|
|
16578
16582
|
const newDataMap = new Map();
|
|
16579
16583
|
if (entities) {
|
|
@@ -34479,7 +34483,7 @@
|
|
|
34479
34483
|
}
|
|
34480
34484
|
}
|
|
34481
34485
|
|
|
34482
|
-
const VERSION = "6.2.
|
|
34486
|
+
const VERSION = "6.2.7";
|
|
34483
34487
|
|
|
34484
34488
|
exports.VERSION = VERSION;
|
|
34485
34489
|
exports.isOutlineChanged = isOutlineChanged;
|