@kq_npm/client3d_webgl_vue 4.5.37 → 4.5.38
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/adddata/index.js +9 -16
- package/boxclip/index.js +30 -13
- package/clientPrint/index.js +294 -140
- package/geologicalbodyanalysis/index.js +25 -4
- package/index.js +289 -135
- package/measure/index.js +3 -2
- package/modelfilter/index.js +29 -9
- package/modelselect/index.js +31 -8
- package/package.json +1 -1
- package/planeclip/index.js +30 -12
- package/sceneapp/index.js +293 -139
- package/sceneview/index.js +293 -139
- package/windyslicing/index.js +3 -1
package/windyslicing/index.js
CHANGED
|
@@ -336,7 +336,8 @@ class WindySlicingViewModel {
|
|
|
336
336
|
attrRange: [ranges[0], ranges[ranges.length - 1]],
|
|
337
337
|
varName: this._windySlicingLayerconfig?.params?.varNames,
|
|
338
338
|
};
|
|
339
|
-
|
|
339
|
+
Object.assign(this._currentVolumeOption, params || {})
|
|
340
|
+
return new Cesium.Kq3dGridVolumeProvider(this._currentVolumeOption);
|
|
340
341
|
}
|
|
341
342
|
/**
|
|
342
343
|
* 创建线剖切
|
|
@@ -1014,6 +1015,7 @@ function formatTooltip(val) {
|
|
|
1014
1015
|
}
|
|
1015
1016
|
// 销毁
|
|
1016
1017
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
1018
|
+
global_event_default().off("windyTypeChange", handleWindyTypeChange);
|
|
1017
1019
|
viewModel && viewModel.destroy();
|
|
1018
1020
|
});
|
|
1019
1021
|
|