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.
- package/dist/bruce-cesium.es5.js +8 -2
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +7 -1
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/rendering/render-managers/tilesets/tileset-entities-render-manager.js +6 -0
- package/dist/lib/rendering/render-managers/tilesets/tileset-entities-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
|
@@ -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.
|
|
21579
|
+
var VERSION = "3.5.2";
|
|
21574
21580
|
|
|
21575
21581
|
exports.VERSION = VERSION;
|
|
21576
21582
|
exports.CesiumParabola = CesiumParabola;
|