bruce-cesium 3.2.5 → 3.2.6
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 +12 -2
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +11 -1
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/rendering/visuals-register.js +10 -0
- package/dist/lib/rendering/visuals-register.js.map +1 -1
- package/dist/types/bruce-cesium.d.ts +1 -1
- package/dist/types/rendering/visuals-register.d.ts +6 -0
- package/package.json +2 -2
package/dist/bruce-cesium.umd.js
CHANGED
|
@@ -6254,6 +6254,16 @@
|
|
|
6254
6254
|
CesiumEntityStyler.UpdateColorSetting("select", color);
|
|
6255
6255
|
}
|
|
6256
6256
|
};
|
|
6257
|
+
/**
|
|
6258
|
+
* Updates the highlight color.
|
|
6259
|
+
* This will not update the highlight color for already highlighted entities.
|
|
6260
|
+
* @param color
|
|
6261
|
+
*/
|
|
6262
|
+
Register.prototype.SetHighlightColor = function (color) {
|
|
6263
|
+
if (color) {
|
|
6264
|
+
CesiumEntityStyler.UpdateColorSetting("highlight", color);
|
|
6265
|
+
}
|
|
6266
|
+
};
|
|
6257
6267
|
Register.prototype.SetSelected = function (params) {
|
|
6258
6268
|
var _a;
|
|
6259
6269
|
var entityIds = params.entityIds, selected = params.selected, refreshIfSelected = params.refreshIfSelected, requestRender = params.requestRender;
|
|
@@ -19830,7 +19840,7 @@
|
|
|
19830
19840
|
CesiumViewMonitor.Monitor = Monitor;
|
|
19831
19841
|
})(exports.CesiumViewMonitor || (exports.CesiumViewMonitor = {}));
|
|
19832
19842
|
|
|
19833
|
-
var VERSION$1 = "3.2.
|
|
19843
|
+
var VERSION$1 = "3.2.6";
|
|
19834
19844
|
|
|
19835
19845
|
exports.VERSION = VERSION$1;
|
|
19836
19846
|
exports.CesiumParabola = CesiumParabola;
|