@kq_npm/client3d_webgl_vue 4.5.43 → 4.5.45
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/aspectanalysis/index.js +2 -1
- package/boxclip/index.js +2 -0
- package/clientPrint/index.js +22379 -22095
- package/clientPrint/style/clientPrint.css +1 -1
- package/compass/index.js +7694 -15
- package/excavatefillanalysis/index.js +21 -18
- package/fixedzoomin/index.js +7694 -15
- package/fixedzoomout/index.js +144 -98
- package/floodanalysis/index.js +10 -0
- package/geologicalbodyanalysis/index.js +10 -0
- package/gpuspatialquery/index.js +15 -12
- package/index.js +801 -540
- package/isolineanalysis/index.js +29 -23
- package/light/index.js +7 -1
- package/limitheightanalysis/index.js +2 -1
- package/measure/index.js +51 -5
- package/modelFlat/index.js +10 -2
- package/modelexcavate/index.js +10 -0
- package/modelprofileanalysis/index.js +12 -16
- package/package.json +1 -1
- package/particleeffect/index.js +2 -1
- package/planeclip/index.js +2 -1
- package/radarscananalysis/index.js +4 -1
- package/resetview/index.js +7699 -10
- package/scaneffect/index.js +5 -2
- package/sceneadvancedtoimage/index.js +4 -3
- package/sceneapp/index.js +22365 -22081
- package/sceneview/index.js +22365 -22081
- package/shadowanalysis/index.js +1 -0
- package/sightlineanalysis/index.js +9 -6
- package/slopeanalysis/index.js +3 -1
- package/slopeaspectanalysis/index.js +14 -7
- package/style.css +1 -1
- package/terrainoperation/index.js +24 -21
- package/terrainprofileanalysis/index.js +3 -2
- package/weathereffect/index.js +6 -5
- package/webgl.es.js +169635 -167976
- package/windyslicing/index.js +18 -5
package/aspectanalysis/index.js
CHANGED
|
@@ -247,7 +247,7 @@ class AspectAnalysisViewModel {
|
|
|
247
247
|
if (this._globaOptions.viewer.terrainProvider && !this._globaOptions.viewer.terrainProvider._heightmapStructure) {
|
|
248
248
|
if (this._globaOptions._drawManager) {
|
|
249
249
|
this.clear();
|
|
250
|
-
this._globaOptions
|
|
250
|
+
this._globaOptions?._drawManager?.startDraw?.("polygon", { clampToGround: true }, (feature, { shape }) => {
|
|
251
251
|
if (!shape.groupName || shape.groupName !== "AspectAnalysisDraw") return;
|
|
252
252
|
that._globaOptions._drawManager.clearDrawGroup("AspectAnalysisDraw");
|
|
253
253
|
if (shape) {
|
|
@@ -292,6 +292,7 @@ class AspectAnalysisViewModel {
|
|
|
292
292
|
}
|
|
293
293
|
// 清除全部结果
|
|
294
294
|
clear() {
|
|
295
|
+
this._globaOptions?._drawManager?.clearDrawGroup("AspectAnalysisDraw");
|
|
295
296
|
this._globaOptions._drawManager && this._globaOptions._drawManager.stopDraw();
|
|
296
297
|
this._aspectAnalysis && this._aspectAnalysis.clear();
|
|
297
298
|
}
|
package/boxclip/index.js
CHANGED
|
@@ -320,6 +320,8 @@ class BoxClipViewModel {
|
|
|
320
320
|
clear() {
|
|
321
321
|
if (this._boxclipAnalysis) this._boxclipAnalysis.boxEnable = false;
|
|
322
322
|
this._boxclipAnalysis && this._boxclipAnalysis.remove();
|
|
323
|
+
this._drawManager?.stopDraw();
|
|
324
|
+
this._drawManager?.clearDrawGroup("BoxClipDraw");
|
|
323
325
|
// this._boxclipAnalysis = null;
|
|
324
326
|
}
|
|
325
327
|
|