bruce-cesium 6.0.2 → 6.0.3
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 +10 -4
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +9 -3
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/rendering/relation-render-engine.js.map +1 -1
- package/dist/lib/rendering/tileset-styler.js +8 -2
- package/dist/lib/rendering/tileset-styler.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
|
@@ -16243,16 +16243,22 @@
|
|
|
16243
16243
|
this.fallbackStyle = null;
|
|
16244
16244
|
}
|
|
16245
16245
|
if (params.scenario != null) {
|
|
16246
|
-
this.scenario = params.scenario;
|
|
16247
16246
|
if (!this.shouldUpdateRegoStates && !!this.scenario) {
|
|
16248
16247
|
this.shouldUpdateRegoStates = true;
|
|
16249
16248
|
}
|
|
16249
|
+
this.scenario = params.scenario;
|
|
16250
16250
|
}
|
|
16251
16251
|
if (params.historic != null) {
|
|
16252
|
-
this.historic = params.historic;
|
|
16253
16252
|
if (params.historic || this.historic != params.historic) {
|
|
16254
16253
|
this.shouldUpdateRegoStates = true;
|
|
16255
16254
|
}
|
|
16255
|
+
this.historic = params.historic;
|
|
16256
|
+
}
|
|
16257
|
+
if (params.expandSources != null) {
|
|
16258
|
+
if (this.expandSources != params.expandSources) {
|
|
16259
|
+
this.shouldUpdateRegoStates = true;
|
|
16260
|
+
}
|
|
16261
|
+
this.expandSources = params.expandSources;
|
|
16256
16262
|
}
|
|
16257
16263
|
// Reload styles.
|
|
16258
16264
|
if (this.loaded) {
|
|
@@ -33208,7 +33214,7 @@
|
|
|
33208
33214
|
}
|
|
33209
33215
|
}
|
|
33210
33216
|
|
|
33211
|
-
const VERSION = "6.0.
|
|
33217
|
+
const VERSION = "6.0.3";
|
|
33212
33218
|
|
|
33213
33219
|
exports.VERSION = VERSION;
|
|
33214
33220
|
exports.isOutlineChanged = isOutlineChanged;
|