bruce-cesium 3.5.0 → 3.5.2

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.
@@ -13605,7 +13605,18 @@
13605
13605
  };
13606
13606
  Manager.prototype.mapTilesetFeature = function (feature) {
13607
13607
  var _a, _b, _c;
13608
+ // Version =1 tilesets.
13608
13609
  var id = feature.getProperty("BruceId");
13610
+ if (!id) {
13611
+ // Version >1 tilesets.
13612
+ id = feature.getProperty("entityId");
13613
+ if (id && typeof id == "string") {
13614
+ // Perhaps a relic of UTF-16 encoding after we stopped using it?
13615
+ if (id.endsWith("\u0000")) {
13616
+ id = id.substring(0, id.length - 1);
13617
+ }
13618
+ }
13619
+ }
13609
13620
  if (id) {
13610
13621
  var rego = {
13611
13622
  entityId: id,
@@ -21565,7 +21576,7 @@
21565
21576
  ViewRenderEngine.Render = Render;
21566
21577
  })(exports.ViewRenderEngine || (exports.ViewRenderEngine = {}));
21567
21578
 
21568
- var VERSION = "3.5.0";
21579
+ var VERSION = "3.5.2";
21569
21580
 
21570
21581
  exports.VERSION = VERSION;
21571
21582
  exports.CesiumParabola = CesiumParabola;