@kq_npm/client3d_webgl_vue 4.5.1 → 4.5.3-beta
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 +27 -23
- package/aspectanalysis/index.js +22 -21
- package/baseterraingallery/index.js +4 -2
- package/boxclip/index.js +22 -21
- package/clientPrint/index.js +3 -2
- package/comparemap/index.js +4 -2
- package/excavatefillanalysis/index.js +22 -21
- package/flight/index.js +21 -21
- package/floodanalysis/index.js +22 -21
- package/geologicalbodyanalysis/index.js +22 -21
- package/gpuspatialquery/index.js +32 -24
- package/hawkeye/index.js +4 -2
- package/headertemp/index.js +3 -2
- package/heatmap3d/index.js +70 -56
- package/index.js +45773 -33773
- package/isolineanalysis/index.js +21 -21
- package/light/index.js +4 -2
- package/limitheightanalysis/index.js +4 -2
- package/measure/index.js +21 -21
- package/modelFlat/index.js +22 -21
- package/modelexcavate/index.js +22 -21
- package/modelfilter/index.js +22 -18
- package/modelprofileanalysis/index.js +4 -2
- package/modelselect/index.js +22 -21
- package/package.json +1 -1
- package/particleeffect/index.js +4 -2
- package/planeclip/index.js +22 -21
- package/roller/index.js +4 -2
- package/scaneffect/index.js +22 -21
- package/sceneapp/index.js +12510 -0
- package/sceneset/index.js +4 -2
- package/scenetohdimage/index.js +10 -5
- package/sceneview/index.js +33009 -20952
- package/screenshot/index.js +4 -2
- package/shadowanalysis/index.js +23 -22
- package/sightlineanalysis/index.js +4 -2
- package/skylineanalysis/index.js +22 -21
- package/slopeanalysis/index.js +22 -21
- package/slopeaspectanalysis/index.js +22 -21
- package/statusbar/index.js +108 -107
- package/terrainoperation/index.js +22 -21
- package/terrainprofileanalysis/index.js +22 -21
- package/underground/index.js +4 -2
- package/videofusion/index.js +22 -21
- package/videoproject/index.js +22 -21
- package/viewshedanalysis/index.js +4 -2
- package/weathereffect/index.js +4 -2
- package/wireframesketch/index.js +22 -18
package/sceneset/index.js
CHANGED
|
@@ -1067,7 +1067,7 @@ const __default__ = {
|
|
|
1067
1067
|
},
|
|
1068
1068
|
|
|
1069
1069
|
setup(__props, {
|
|
1070
|
-
expose
|
|
1070
|
+
expose: __expose
|
|
1071
1071
|
}) {
|
|
1072
1072
|
const props = __props;
|
|
1073
1073
|
const {
|
|
@@ -1257,10 +1257,12 @@ const __default__ = {
|
|
|
1257
1257
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
1258
1258
|
viewModel && viewModel.destroy();
|
|
1259
1259
|
});
|
|
1260
|
-
|
|
1260
|
+
|
|
1261
|
+
__expose({
|
|
1261
1262
|
contentChanged,
|
|
1262
1263
|
paramsChanged
|
|
1263
1264
|
});
|
|
1265
|
+
|
|
1264
1266
|
return (_ctx, _cache) => {
|
|
1265
1267
|
const _component_kq_switch = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-switch");
|
|
1266
1268
|
|
package/scenetohdimage/index.js
CHANGED
|
@@ -49,7 +49,8 @@ class SceneToHDImageViewModel {
|
|
|
49
49
|
canvas: this._viewer.scene.canvas
|
|
50
50
|
});
|
|
51
51
|
this.resizeExportRegionSize();
|
|
52
|
-
}
|
|
52
|
+
} // 重置输出图片尺寸
|
|
53
|
+
|
|
53
54
|
|
|
54
55
|
resizeExportRegionSize() {
|
|
55
56
|
document.getElementById('exportPictureRegion').style.width = Number(this._options.imgWidth) * Number(this._options.pantographRatio) + 'px';
|
|
@@ -87,7 +88,8 @@ class SceneToHDImageViewModel {
|
|
|
87
88
|
|
|
88
89
|
this._canvasToImage.saveAsimages(canvas, options);
|
|
89
90
|
}
|
|
90
|
-
}
|
|
91
|
+
} // 重新设置场景尺寸
|
|
92
|
+
|
|
91
93
|
|
|
92
94
|
scaleCesiumContainer() {
|
|
93
95
|
// var bWidth = document.getElementById(this._viewer._container.id).parentNode.clientWidth,
|
|
@@ -106,7 +108,8 @@ class SceneToHDImageViewModel {
|
|
|
106
108
|
|
|
107
109
|
changeDisplayArea() {
|
|
108
110
|
document.getElementById('exportPictureRegion').style.display = this._options.displayArea ? 'block' : 'none';
|
|
109
|
-
}
|
|
111
|
+
} // 调整出图范围尺寸
|
|
112
|
+
|
|
110
113
|
|
|
111
114
|
changPantographRatio() {
|
|
112
115
|
this._viewer.container.style.transform = `translate(-50%,-50%) scale(${this._options.pantographRatio})`;
|
|
@@ -341,7 +344,7 @@ const __default__ = {
|
|
|
341
344
|
},
|
|
342
345
|
|
|
343
346
|
setup(__props, {
|
|
344
|
-
expose
|
|
347
|
+
expose: __expose
|
|
345
348
|
}) {
|
|
346
349
|
const props = __props;
|
|
347
350
|
const {
|
|
@@ -474,7 +477,9 @@ const __default__ = {
|
|
|
474
477
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
475
478
|
viewModel && viewModel.destroy();
|
|
476
479
|
});
|
|
477
|
-
|
|
480
|
+
|
|
481
|
+
__expose({});
|
|
482
|
+
|
|
478
483
|
return (_ctx, _cache) => {
|
|
479
484
|
const _component_kq_slider = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-slider");
|
|
480
485
|
|