@kq_npm/client3d_webgl_vue 4.5.15 → 4.5.17-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 +4 -2
- package/aspectanalysis/index.js +3 -1
- package/boxclip/index.js +3 -1
- package/clientPrint/index.js +1796 -1740
- package/excavatefillanalysis/index.js +3 -1
- package/flight/index.js +3 -1
- package/floodanalysis/index.js +3 -1
- package/geologicalbodyanalysis/index.js +3 -1
- package/gpuspatialquery/index.js +3 -1
- package/heatmap3d/index.js +3 -1
- package/index.js +166 -134
- package/isolineanalysis/index.js +3 -1
- package/light/index.js +3 -1
- package/limitheightanalysis/index.js +3 -1
- package/measure/index.js +256 -233
- package/modelFlat/index.js +3 -1
- package/modelexcavate/index.js +3 -1
- package/modelfilter/index.js +3 -1
- package/modelprofileanalysis/index.js +3 -1
- package/modelselect/index.js +3 -1
- package/package.json +1 -1
- package/particleeffect/index.js +3 -1
- package/planeclip/index.js +3 -1
- package/roller/index.js +3 -1
- package/scaneffect/index.js +3 -1
- package/sceneadvancedtoimage/index.js +4 -2
- package/sceneapp/index.js +1053 -27
- package/sceneset/index.js +10 -8
- package/scenetohdimage/index.js +3 -1
- package/sceneview/index.js +1796 -1740
- package/screenshot/index.js +3 -1
- package/shadowanalysis/index.js +3 -1
- package/sightlineanalysis/index.js +3 -1
- package/skylineanalysis/index.js +3 -1
- package/slopeanalysis/index.js +3 -1
- package/slopeaspectanalysis/index.js +3 -1
- package/terrainoperation/index.js +3 -1
- package/terrainprofileanalysis/index.js +3 -1
- package/videofusion/index.js +3 -1
- package/videoproject/index.js +3 -1
- package/viewshedanalysis/index.js +3 -1
- package/weathereffect/index.js +3 -1
- package/wireframesketch/index.js +3 -1
package/adddata/index.js
CHANGED
|
@@ -1875,7 +1875,7 @@ const __default__ = {
|
|
|
1875
1875
|
description: language.value.imagertyCZMLdescription
|
|
1876
1876
|
}*/];
|
|
1877
1877
|
if (props.hideServiceTypes) {
|
|
1878
|
-
let indexList = props.hideServiceTypes.split(
|
|
1878
|
+
let indexList = props.hideServiceTypes.split(",");
|
|
1879
1879
|
for (let i = types.length - 1; i >= 0; i--) {
|
|
1880
1880
|
if (indexList.includes(i.toString())) {
|
|
1881
1881
|
types.splice(i, 1);
|
|
@@ -1891,7 +1891,9 @@ const __default__ = {
|
|
|
1891
1891
|
});
|
|
1892
1892
|
watchCreateHeaderTemp();
|
|
1893
1893
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
1894
|
-
|
|
1894
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
1895
|
+
watchCreateHeaderTemp();
|
|
1896
|
+
});
|
|
1895
1897
|
});
|
|
1896
1898
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
1897
1899
|
if (scenceView) {
|
package/aspectanalysis/index.js
CHANGED
|
@@ -436,7 +436,9 @@ const __default__ = {
|
|
|
436
436
|
});
|
|
437
437
|
watchCreateHeaderTemp();
|
|
438
438
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
439
|
-
|
|
439
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
440
|
+
watchCreateHeaderTemp();
|
|
441
|
+
});
|
|
440
442
|
});
|
|
441
443
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
442
444
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
package/boxclip/index.js
CHANGED
|
@@ -560,7 +560,9 @@ const __default__ = {
|
|
|
560
560
|
});
|
|
561
561
|
watchCreateHeaderTemp();
|
|
562
562
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
563
|
-
|
|
563
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
564
|
+
watchCreateHeaderTemp();
|
|
565
|
+
});
|
|
564
566
|
});
|
|
565
567
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
566
568
|
//父组 件ScenceView初始化完成后执行
|