bruce-cesium 3.5.1 → 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.
@@ -13610,6 +13610,12 @@
13610
13610
  if (!id) {
13611
13611
  // Version >1 tilesets.
13612
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
+ }
13613
13619
  }
13614
13620
  if (id) {
13615
13621
  var rego = {
@@ -21570,7 +21576,7 @@
21570
21576
  ViewRenderEngine.Render = Render;
21571
21577
  })(exports.ViewRenderEngine || (exports.ViewRenderEngine = {}));
21572
21578
 
21573
- var VERSION = "3.5.1";
21579
+ var VERSION = "3.5.2";
21574
21580
 
21575
21581
  exports.VERSION = VERSION;
21576
21582
  exports.CesiumParabola = CesiumParabola;