@kq_npm/client3d_webgl_vue 3.0.7-beta → 3.0.8-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 +40 -177
- package/aspectanalysis/index.js +47 -179
- package/aspectanalysis/style/aspectanalysis.css +1 -1
- package/baseterraingallery/index.js +37 -176
- package/boxclip/index.js +50 -182
- package/boxclip/style/boxclip.css +1 -1
- package/excavatefillanalysis/index.js +60 -181
- package/excavatefillanalysis/style/excavatefillanalysis.css +1 -1
- package/floodanalysis/index.js +9 -6
- package/floodanalysis/style/floodanalysis.css +1 -1
- package/gpuspatialquery/index.js +6 -3
- package/gpuspatialquery/style/gpuspatialquery.css +1 -1
- package/index.js +530 -332
- package/isolineanalysis/index.js +34 -31
- package/isolineanalysis/style/isolineanalysis.css +1 -1
- package/modelselect/index.js +9 -6
- package/modelselect/style/modelselect.css +1 -1
- package/package.json +1 -1
- package/particleeffect/index.js +6 -3
- package/particleeffect/style/particleeffect.css +1 -1
- package/planeclip/index.js +10 -7
- package/planeclip/style/planeclip.css +1 -1
- package/profileanalysis/index.js +9 -6
- package/profileanalysis/style/profileanalysis.css +1 -1
- package/scenceview/index.js +394 -198
- package/shadowanalysis/index.js +17 -14
- package/shadowanalysis/style/shadowanalysis.css +1 -1
- package/sightlineanalysis/index.js +6 -3
- package/sightlineanalysis/style/sightlineanalysis.css +1 -1
- package/skylineanalysis/index.js +8 -5
- package/skylineanalysis/style/skylineanalysis.css +1 -1
- package/slopeanalysis/index.js +21 -18
- package/slopeanalysis/style/slopeanalysis.css +1 -1
- package/style.css +1 -1
- package/terrainoperation/index.js +12 -9
- package/terrainoperation/style/terrainoperation.css +1 -1
- package/viewshedanalysis/index.js +6 -3
- package/viewshedanalysis/style/viewshedanalysis.css +1 -1
- package/weathereffect/index.js +7 -4
- package/weathereffect/style/weathereffect.css +1 -1
package/scenceview/index.js
CHANGED
|
@@ -905,8 +905,6 @@ class AddDataViewModel {
|
|
|
905
905
|
}
|
|
906
906
|
|
|
907
907
|
}
|
|
908
|
-
// EXTERNAL MODULE: ./src/webgl/headertemp/index.js + 3 modules
|
|
909
|
-
var headertemp = __webpack_require__(519);
|
|
910
908
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/adddata/AddData.vue?vue&type=script&setup=true&lang=js
|
|
911
909
|
|
|
912
910
|
const _hoisted_1 = {
|
|
@@ -961,6 +959,11 @@ const __default__ = {
|
|
|
961
959
|
type: Boolean,
|
|
962
960
|
default: true
|
|
963
961
|
},
|
|
962
|
+
|
|
963
|
+
/**
|
|
964
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
965
|
+
*/
|
|
966
|
+
position: [String, Object],
|
|
964
967
|
// 当前展示的tab标签页
|
|
965
968
|
activeName: {
|
|
966
969
|
type: String,
|
|
@@ -1034,9 +1037,22 @@ const __default__ = {
|
|
|
1034
1037
|
}
|
|
1035
1038
|
|
|
1036
1039
|
return flag;
|
|
1037
|
-
});
|
|
1040
|
+
}); // 组件容器Ref
|
|
1041
|
+
|
|
1042
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
1043
|
+
|
|
1044
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
1045
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
1038
1046
|
let viewModel = null;
|
|
1039
1047
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
1048
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
1049
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
1050
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
1051
|
+
});
|
|
1052
|
+
watchCreateHeaderTemp();
|
|
1053
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
1054
|
+
watchCreateHeaderTemp();
|
|
1055
|
+
});
|
|
1040
1056
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
1041
1057
|
if (scenceView) {
|
|
1042
1058
|
language.value = scenceView._language;
|
|
@@ -1153,7 +1169,18 @@ const __default__ = {
|
|
|
1153
1169
|
viewModel = new AddDataViewModel(scenceView, options);
|
|
1154
1170
|
}
|
|
1155
1171
|
});
|
|
1156
|
-
});
|
|
1172
|
+
});
|
|
1173
|
+
/**
|
|
1174
|
+
* @description 监听header生成
|
|
1175
|
+
*/
|
|
1176
|
+
|
|
1177
|
+
const watchCreateHeaderTemp = () => {
|
|
1178
|
+
if (props.showHeaderTemp) {
|
|
1179
|
+
// 生成headerTemp
|
|
1180
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
1181
|
+
}
|
|
1182
|
+
}; // 切换tab页
|
|
1183
|
+
|
|
1157
1184
|
|
|
1158
1185
|
function handleChange(pane) {} // 切换类型
|
|
1159
1186
|
|
|
@@ -1238,17 +1265,16 @@ const __default__ = {
|
|
|
1238
1265
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
1239
1266
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-add-data", {
|
|
1240
1267
|
'kq-box-shadow': __props.showShadow
|
|
1241
|
-
}])
|
|
1242
|
-
|
|
1268
|
+
}]),
|
|
1269
|
+
ref_key: "boxRef",
|
|
1270
|
+
ref: boxRef
|
|
1271
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
1243
1272
|
key: 0,
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
}, null, 8
|
|
1250
|
-
/* PROPS */
|
|
1251
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_tabs, {
|
|
1273
|
+
ref_key: "headerTempRef",
|
|
1274
|
+
ref: headerTempRef
|
|
1275
|
+
}, null, 512
|
|
1276
|
+
/* NEED_PATCH */
|
|
1277
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_tabs, {
|
|
1252
1278
|
modelValue: props.activeName,
|
|
1253
1279
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = $event => props.activeName = $event),
|
|
1254
1280
|
onTabChange: handleChange
|
|
@@ -1684,11 +1710,14 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
1684
1710
|
var AspectAnalysisViewModel = __webpack_require__(8132);
|
|
1685
1711
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
1686
1712
|
var client_icons_vue_ = __webpack_require__(348);
|
|
1687
|
-
// EXTERNAL MODULE:
|
|
1688
|
-
var
|
|
1713
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
1714
|
+
var util_ = __webpack_require__(9519);
|
|
1689
1715
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/aspectanalysis/AspectAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
1690
1716
|
|
|
1691
1717
|
const _hoisted_1 = {
|
|
1718
|
+
class: "kq3d-aspect-analysis-box"
|
|
1719
|
+
};
|
|
1720
|
+
const _hoisted_2 = {
|
|
1692
1721
|
class: "kq3d-aspect-analysis-footer"
|
|
1693
1722
|
};
|
|
1694
1723
|
|
|
@@ -1710,6 +1739,11 @@ const __default__ = {
|
|
|
1710
1739
|
type: Boolean,
|
|
1711
1740
|
default: true
|
|
1712
1741
|
},
|
|
1742
|
+
|
|
1743
|
+
/**
|
|
1744
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
1745
|
+
*/
|
|
1746
|
+
position: [String, Object],
|
|
1713
1747
|
// 是否生成HeaderTemp
|
|
1714
1748
|
showHeaderTemp: {
|
|
1715
1749
|
type: Boolean,
|
|
@@ -1764,8 +1798,21 @@ const __default__ = {
|
|
|
1764
1798
|
// 箭头宽度最大值
|
|
1765
1799
|
arrowColor: props.settingParams && props.settingParams.arrowColor || "#FFFF00" // 箭头颜色
|
|
1766
1800
|
|
|
1767
|
-
});
|
|
1801
|
+
}); // 组件容器Ref
|
|
1802
|
+
|
|
1803
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
1804
|
+
|
|
1805
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
1806
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
1768
1807
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
1808
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
1809
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
1810
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
1811
|
+
});
|
|
1812
|
+
watchCreateHeaderTemp();
|
|
1813
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
1814
|
+
watchCreateHeaderTemp();
|
|
1815
|
+
});
|
|
1769
1816
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
1770
1817
|
|
|
1771
1818
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -1781,7 +1828,18 @@ const __default__ = {
|
|
|
1781
1828
|
});
|
|
1782
1829
|
}
|
|
1783
1830
|
});
|
|
1784
|
-
});
|
|
1831
|
+
});
|
|
1832
|
+
/**
|
|
1833
|
+
* @description 监听header生成
|
|
1834
|
+
*/
|
|
1835
|
+
|
|
1836
|
+
const watchCreateHeaderTemp = () => {
|
|
1837
|
+
if (props.showHeaderTemp) {
|
|
1838
|
+
// 生成headerTemp
|
|
1839
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
1840
|
+
}
|
|
1841
|
+
}; // 参数改变
|
|
1842
|
+
|
|
1785
1843
|
|
|
1786
1844
|
function paramsChanged(key) {
|
|
1787
1845
|
switch (key) {
|
|
@@ -1848,17 +1906,16 @@ const __default__ = {
|
|
|
1848
1906
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
1849
1907
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-aspect-analysis", {
|
|
1850
1908
|
'kq-box-shadow': __props.showShadow
|
|
1851
|
-
}])
|
|
1852
|
-
|
|
1909
|
+
}]),
|
|
1910
|
+
ref_key: "boxRef",
|
|
1911
|
+
ref: boxRef
|
|
1912
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
1853
1913
|
key: 0,
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
}, null, 8
|
|
1860
|
-
/* PROPS */
|
|
1861
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
1914
|
+
ref_key: "headerTempRef",
|
|
1915
|
+
ref: headerTempRef
|
|
1916
|
+
}, null, 512
|
|
1917
|
+
/* NEED_PATCH */
|
|
1918
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
1862
1919
|
class: "kq3d-aspect-analysis-tip"
|
|
1863
1920
|
}, {
|
|
1864
1921
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).skylineTips), 1
|
|
@@ -2028,7 +2085,7 @@ const __default__ = {
|
|
|
2028
2085
|
|
|
2029
2086
|
}, 8
|
|
2030
2087
|
/* PROPS */
|
|
2031
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
2088
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
2032
2089
|
onClick: _cache[10] || (_cache[10] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
2033
2090
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startAnalysis,
|
|
2034
2091
|
type: "primary"
|
|
@@ -2053,7 +2110,7 @@ const __default__ = {
|
|
|
2053
2110
|
|
|
2054
2111
|
}, 8
|
|
2055
2112
|
/* PROPS */
|
|
2056
|
-
, ["title"])])], 2
|
|
2113
|
+
, ["title"])])])], 2
|
|
2057
2114
|
/* CLASS */
|
|
2058
2115
|
);
|
|
2059
2116
|
};
|
|
@@ -2187,8 +2244,8 @@ var BaseterrainGalleryViewModel = __webpack_require__(2109);
|
|
|
2187
2244
|
var const_image_ = __webpack_require__(9702);
|
|
2188
2245
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
2189
2246
|
var client_icons_vue_ = __webpack_require__(348);
|
|
2190
|
-
// EXTERNAL MODULE:
|
|
2191
|
-
var
|
|
2247
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
2248
|
+
var util_ = __webpack_require__(9519);
|
|
2192
2249
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/baseterraingallery/BaseterrainGallery.vue?vue&type=script&setup=true&lang=js
|
|
2193
2250
|
|
|
2194
2251
|
const _hoisted_1 = {
|
|
@@ -2236,6 +2293,11 @@ const __default__ = {
|
|
|
2236
2293
|
type: Boolean,
|
|
2237
2294
|
default: true
|
|
2238
2295
|
},
|
|
2296
|
+
|
|
2297
|
+
/**
|
|
2298
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
2299
|
+
*/
|
|
2300
|
+
position: [String, Object],
|
|
2239
2301
|
// 是否生成HeaderTemp
|
|
2240
2302
|
showHeaderTemp: {
|
|
2241
2303
|
type: Boolean,
|
|
@@ -2272,8 +2334,18 @@ const __default__ = {
|
|
|
2272
2334
|
let currentIndex = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(2);
|
|
2273
2335
|
let currentTerrain = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(""); //逻辑类对象
|
|
2274
2336
|
|
|
2275
|
-
let viewModel = null;
|
|
2337
|
+
let viewModel = null; // 组件容器Ref
|
|
2338
|
+
|
|
2339
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
2340
|
+
|
|
2341
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
2342
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
2276
2343
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
2344
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
2345
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
2346
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
2347
|
+
});
|
|
2348
|
+
watchCreateHeaderTemp();
|
|
2277
2349
|
currentIndex.value = props.selectIndex;
|
|
2278
2350
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
2279
2351
|
if (scenceView) {
|
|
@@ -2284,6 +2356,16 @@ const __default__ = {
|
|
|
2284
2356
|
}
|
|
2285
2357
|
});
|
|
2286
2358
|
});
|
|
2359
|
+
/**
|
|
2360
|
+
* @description 监听header生成
|
|
2361
|
+
*/
|
|
2362
|
+
|
|
2363
|
+
const watchCreateHeaderTemp = () => {
|
|
2364
|
+
if (props.showHeaderTemp) {
|
|
2365
|
+
// 生成headerTemp
|
|
2366
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
2367
|
+
}
|
|
2368
|
+
};
|
|
2287
2369
|
|
|
2288
2370
|
function changSelectTerrain() {
|
|
2289
2371
|
switch (currentIndex.value) {
|
|
@@ -2339,17 +2421,16 @@ const __default__ = {
|
|
|
2339
2421
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
2340
2422
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-baseterrain-gallery", {
|
|
2341
2423
|
'kq-box-shadow': __props.showShadow
|
|
2342
|
-
}])
|
|
2343
|
-
|
|
2424
|
+
}]),
|
|
2425
|
+
ref_key: "boxRef",
|
|
2426
|
+
ref: boxRef
|
|
2427
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
2344
2428
|
key: 0,
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
}, null, 8
|
|
2351
|
-
/* PROPS */
|
|
2352
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
2429
|
+
ref_key: "headerTempRef",
|
|
2430
|
+
ref: headerTempRef
|
|
2431
|
+
}, null, 512
|
|
2432
|
+
/* NEED_PATCH */
|
|
2433
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
2353
2434
|
style: {
|
|
2354
2435
|
"line-height": "48px",
|
|
2355
2436
|
"height": "48px"
|
|
@@ -2675,17 +2756,20 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
2675
2756
|
var BoxClipViewModel = __webpack_require__(219);
|
|
2676
2757
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
2677
2758
|
var client_icons_vue_ = __webpack_require__(348);
|
|
2678
|
-
// EXTERNAL MODULE:
|
|
2679
|
-
var
|
|
2759
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
2760
|
+
var util_ = __webpack_require__(9519);
|
|
2680
2761
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/boxclip/BoxClip.vue?vue&type=script&setup=true&lang=js
|
|
2681
2762
|
|
|
2682
2763
|
const _hoisted_1 = {
|
|
2683
|
-
class: "kq3d-box-clip-
|
|
2764
|
+
class: "kq3d-box-clip-box"
|
|
2684
2765
|
};
|
|
2685
2766
|
const _hoisted_2 = {
|
|
2686
2767
|
class: "kq3d-box-clip-span"
|
|
2687
2768
|
};
|
|
2688
2769
|
const _hoisted_3 = {
|
|
2770
|
+
class: "kq3d-box-clip-span"
|
|
2771
|
+
};
|
|
2772
|
+
const _hoisted_4 = {
|
|
2689
2773
|
class: "kq3d-box-clip-footer"
|
|
2690
2774
|
};
|
|
2691
2775
|
|
|
@@ -2707,6 +2791,11 @@ const __default__ = {
|
|
|
2707
2791
|
type: Boolean,
|
|
2708
2792
|
default: true
|
|
2709
2793
|
},
|
|
2794
|
+
|
|
2795
|
+
/**
|
|
2796
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
2797
|
+
*/
|
|
2798
|
+
position: [String, Object],
|
|
2710
2799
|
// 是否生成HeaderTemp
|
|
2711
2800
|
showHeaderTemp: {
|
|
2712
2801
|
type: Boolean,
|
|
@@ -2758,8 +2847,21 @@ const __default__ = {
|
|
|
2758
2847
|
clipHeight: props.settingParams && props.settingParams.clipHeight || 4.7,
|
|
2759
2848
|
clipRotation: props.settingParams && props.settingParams.clipRotation || 90
|
|
2760
2849
|
});
|
|
2761
|
-
let viewModel = null;
|
|
2850
|
+
let viewModel = null; // 组件容器Ref
|
|
2851
|
+
|
|
2852
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
2853
|
+
|
|
2854
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
2855
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
2762
2856
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
2857
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
2858
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
2859
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
2860
|
+
});
|
|
2861
|
+
watchCreateHeaderTemp();
|
|
2862
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
2863
|
+
watchCreateHeaderTemp();
|
|
2864
|
+
});
|
|
2763
2865
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
2764
2866
|
//父组 件ScenceView初始化完成后执行
|
|
2765
2867
|
|
|
@@ -2792,7 +2894,18 @@ const __default__ = {
|
|
|
2792
2894
|
}
|
|
2793
2895
|
}
|
|
2794
2896
|
}, 1000);
|
|
2795
|
-
});
|
|
2897
|
+
});
|
|
2898
|
+
/**
|
|
2899
|
+
* @description 监听header生成
|
|
2900
|
+
*/
|
|
2901
|
+
|
|
2902
|
+
const watchCreateHeaderTemp = () => {
|
|
2903
|
+
if (props.showHeaderTemp) {
|
|
2904
|
+
// 生成headerTemp
|
|
2905
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
2906
|
+
}
|
|
2907
|
+
}; // 参数改变
|
|
2908
|
+
|
|
2796
2909
|
|
|
2797
2910
|
function paramsChanged(key) {
|
|
2798
2911
|
switch (key) {
|
|
@@ -2894,17 +3007,16 @@ const __default__ = {
|
|
|
2894
3007
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
2895
3008
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-box-clip", {
|
|
2896
3009
|
'kq-box-shadow': __props.showShadow
|
|
2897
|
-
}])
|
|
2898
|
-
|
|
3010
|
+
}]),
|
|
3011
|
+
ref_key: "boxRef",
|
|
3012
|
+
ref: boxRef
|
|
3013
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
2899
3014
|
key: 0,
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
}, null, 8
|
|
2906
|
-
/* PROPS */
|
|
2907
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
3015
|
+
ref_key: "headerTempRef",
|
|
3016
|
+
ref: headerTempRef
|
|
3017
|
+
}, null, 512
|
|
3018
|
+
/* NEED_PATCH */
|
|
3019
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
2908
3020
|
gutter: 20,
|
|
2909
3021
|
class: "rowClass"
|
|
2910
3022
|
}, {
|
|
@@ -2912,7 +3024,7 @@ const __default__ = {
|
|
|
2912
3024
|
span: 6,
|
|
2913
3025
|
class: "colClass"
|
|
2914
3026
|
}, {
|
|
2915
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
3027
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clipObj), 1
|
|
2916
3028
|
/* TEXT */
|
|
2917
3029
|
)]),
|
|
2918
3030
|
_: 1
|
|
@@ -2965,7 +3077,7 @@ const __default__ = {
|
|
|
2965
3077
|
span: 6,
|
|
2966
3078
|
class: "colClass"
|
|
2967
3079
|
}, {
|
|
2968
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
3080
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_3, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clipPattern), 1
|
|
2969
3081
|
/* TEXT */
|
|
2970
3082
|
)]),
|
|
2971
3083
|
_: 1
|
|
@@ -3494,7 +3606,7 @@ const __default__ = {
|
|
|
3494
3606
|
|
|
3495
3607
|
}, 8
|
|
3496
3608
|
/* PROPS */
|
|
3497
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
3609
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_4, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
3498
3610
|
onClick: _cache[38] || (_cache[38] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => clip(), ["stop"])),
|
|
3499
3611
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clip,
|
|
3500
3612
|
type: "primary"
|
|
@@ -3519,7 +3631,7 @@ const __default__ = {
|
|
|
3519
3631
|
|
|
3520
3632
|
}, 8
|
|
3521
3633
|
/* PROPS */
|
|
3522
|
-
, ["title"])])], 2
|
|
3634
|
+
, ["title"])])])], 2
|
|
3523
3635
|
/* CLASS */
|
|
3524
3636
|
);
|
|
3525
3637
|
};
|
|
@@ -4333,24 +4445,27 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
4333
4445
|
var ExcavateFillAnalysisViewModel = __webpack_require__(5183);
|
|
4334
4446
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
4335
4447
|
var client_icons_vue_ = __webpack_require__(348);
|
|
4336
|
-
// EXTERNAL MODULE:
|
|
4337
|
-
var
|
|
4448
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
4449
|
+
var util_ = __webpack_require__(9519);
|
|
4338
4450
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/excavatefillanalysis/ExcavateFillAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
4339
4451
|
|
|
4340
4452
|
const _hoisted_1 = {
|
|
4341
|
-
class: "kq3d-excavate-fill-analysis-
|
|
4453
|
+
class: "kq3d-excavate-fill-analysis-box"
|
|
4342
4454
|
};
|
|
4343
4455
|
const _hoisted_2 = {
|
|
4344
|
-
class: "kq3d-excavate-fill-analysis-
|
|
4456
|
+
class: "kq3d-excavate-fill-analysis-content"
|
|
4345
4457
|
};
|
|
4346
4458
|
const _hoisted_3 = {
|
|
4347
|
-
|
|
4348
|
-
class: "kq3d-excavate-fill-analysis-result"
|
|
4459
|
+
class: "kq3d-excavate-fill-analysis-footer"
|
|
4349
4460
|
};
|
|
4350
4461
|
const _hoisted_4 = {
|
|
4351
|
-
|
|
4462
|
+
key: 0,
|
|
4463
|
+
class: "kq3d-excavate-fill-analysis-result"
|
|
4352
4464
|
};
|
|
4353
4465
|
const _hoisted_5 = {
|
|
4466
|
+
class: "kq3d-excavate-fill-analysis-result-div"
|
|
4467
|
+
};
|
|
4468
|
+
const _hoisted_6 = {
|
|
4354
4469
|
class: "title"
|
|
4355
4470
|
};
|
|
4356
4471
|
|
|
@@ -4372,6 +4487,11 @@ const __default__ = {
|
|
|
4372
4487
|
type: Boolean,
|
|
4373
4488
|
default: true
|
|
4374
4489
|
},
|
|
4490
|
+
|
|
4491
|
+
/**
|
|
4492
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
4493
|
+
*/
|
|
4494
|
+
position: [String, Object],
|
|
4375
4495
|
// 是否生成HeaderTemp
|
|
4376
4496
|
showHeaderTemp: {
|
|
4377
4497
|
type: Boolean,
|
|
@@ -4426,8 +4546,21 @@ const __default__ = {
|
|
|
4426
4546
|
fillColor: props.settingParams && props.settingParams.fillColor || "#E6A23C" // // 填方颜色
|
|
4427
4547
|
|
|
4428
4548
|
});
|
|
4429
|
-
let viewModel = null;
|
|
4549
|
+
let viewModel = null; // 组件容器Ref
|
|
4550
|
+
|
|
4551
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
4552
|
+
|
|
4553
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
4554
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
4430
4555
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
4556
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
4557
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
4558
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
4559
|
+
});
|
|
4560
|
+
watchCreateHeaderTemp();
|
|
4561
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
4562
|
+
watchCreateHeaderTemp();
|
|
4563
|
+
});
|
|
4431
4564
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
4432
4565
|
|
|
4433
4566
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -4460,7 +4593,18 @@ const __default__ = {
|
|
|
4460
4593
|
});
|
|
4461
4594
|
}
|
|
4462
4595
|
});
|
|
4463
|
-
});
|
|
4596
|
+
});
|
|
4597
|
+
/**
|
|
4598
|
+
* @description 监听header生成
|
|
4599
|
+
*/
|
|
4600
|
+
|
|
4601
|
+
const watchCreateHeaderTemp = () => {
|
|
4602
|
+
if (props.showHeaderTemp) {
|
|
4603
|
+
// 生成headerTemp
|
|
4604
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
4605
|
+
}
|
|
4606
|
+
}; //开始分析
|
|
4607
|
+
|
|
4464
4608
|
|
|
4465
4609
|
function startAnalysis() {
|
|
4466
4610
|
// this.clearResult();
|
|
@@ -4527,6 +4671,8 @@ const __default__ = {
|
|
|
4527
4671
|
clearResult
|
|
4528
4672
|
});
|
|
4529
4673
|
return (_ctx, _cache) => {
|
|
4674
|
+
const _component_HeaderTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("HeaderTemp");
|
|
4675
|
+
|
|
4530
4676
|
const _component_kq_slider = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-slider");
|
|
4531
4677
|
|
|
4532
4678
|
const _component_kq_col = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-col");
|
|
@@ -4550,9 +4696,17 @@ const __default__ = {
|
|
|
4550
4696
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
4551
4697
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-excavate-fill-analysis", {
|
|
4552
4698
|
'kq-box-shadow': __props.showShadow
|
|
4553
|
-
}])
|
|
4554
|
-
|
|
4699
|
+
}]),
|
|
4700
|
+
ref_key: "boxRef",
|
|
4701
|
+
ref: boxRef
|
|
4702
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
4555
4703
|
key: 0,
|
|
4704
|
+
ref_key: "headerTempRef",
|
|
4705
|
+
ref: headerTempRef
|
|
4706
|
+
}, null, 512
|
|
4707
|
+
/* NEED_PATCH */
|
|
4708
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), __props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_HeaderTemp, {
|
|
4709
|
+
key: 1,
|
|
4556
4710
|
showShadow: __props.showShadow,
|
|
4557
4711
|
headerTempTitle: __props.headerTempTitle || (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).excavateFillAnalysis,
|
|
4558
4712
|
headerTempIcon: __props.headerTempIcon,
|
|
@@ -4560,7 +4714,7 @@ const __default__ = {
|
|
|
4560
4714
|
isRight: __props.isRight
|
|
4561
4715
|
}, null, 8
|
|
4562
4716
|
/* PROPS */
|
|
4563
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
4717
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
4564
4718
|
style: {
|
|
4565
4719
|
"display": "flex"
|
|
4566
4720
|
}
|
|
@@ -4572,7 +4726,7 @@ const __default__ = {
|
|
|
4572
4726
|
})
|
|
4573
4727
|
}, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).altitudeHeight), 5
|
|
4574
4728
|
/* TEXT, STYLE */
|
|
4575
|
-
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
4729
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
4576
4730
|
style: {
|
|
4577
4731
|
"display": "flex"
|
|
4578
4732
|
}
|
|
@@ -4710,7 +4864,7 @@ const __default__ = {
|
|
|
4710
4864
|
|
|
4711
4865
|
}, 8
|
|
4712
4866
|
/* PROPS */
|
|
4713
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
4867
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
4714
4868
|
onClick: _cache[8] || (_cache[8] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
4715
4869
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startAnalysis,
|
|
4716
4870
|
type: "primary"
|
|
@@ -4735,19 +4889,19 @@ const __default__ = {
|
|
|
4735
4889
|
|
|
4736
4890
|
}, 8
|
|
4737
4891
|
/* PROPS */
|
|
4738
|
-
, ["title"])]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(showResult) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div",
|
|
4892
|
+
, ["title"])]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(showResult) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_4, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_5, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
4739
4893
|
class: "kq3d-excavate-fill-analysis-result-title"
|
|
4740
4894
|
}, {
|
|
4741
4895
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
4742
4896
|
span: 18
|
|
4743
4897
|
}, {
|
|
4744
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
4898
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_6, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).analysisResult), 1
|
|
4745
4899
|
/* TEXT */
|
|
4746
4900
|
)]),
|
|
4747
4901
|
_: 1
|
|
4748
4902
|
/* STABLE */
|
|
4749
4903
|
|
|
4750
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-col :span=\"6\" class=\"btn\">\r\n
|
|
4904
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-col :span=\"6\" class=\"btn\">\r\n <kq-icon @click=\"closeBtn()\">\r\n <Close />\r\n </kq-icon>\r\n </kq-col> ")]),
|
|
4751
4905
|
_: 1
|
|
4752
4906
|
/* STABLE */
|
|
4753
4907
|
|
|
@@ -4765,7 +4919,7 @@ const __default__ = {
|
|
|
4765
4919
|
_: 1
|
|
4766
4920
|
/* STABLE */
|
|
4767
4921
|
|
|
4768
|
-
})])])])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)], 2
|
|
4922
|
+
})])])])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)])], 2
|
|
4769
4923
|
/* CLASS */
|
|
4770
4924
|
);
|
|
4771
4925
|
};
|
|
@@ -6485,8 +6639,11 @@ var client_icons_vue_ = __webpack_require__(348);
|
|
|
6485
6639
|
var headertemp = __webpack_require__(519);
|
|
6486
6640
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/floodanalysis/FloodAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
6487
6641
|
|
|
6488
|
-
const _hoisted_1 =
|
|
6489
|
-
|
|
6642
|
+
const _hoisted_1 = {
|
|
6643
|
+
class: "kq3d-flood-analysis-box"
|
|
6644
|
+
};
|
|
6645
|
+
const _hoisted_2 = ["src"];
|
|
6646
|
+
const _hoisted_3 = {
|
|
6490
6647
|
class: "kq3d-flood-analysis-footer"
|
|
6491
6648
|
};
|
|
6492
6649
|
|
|
@@ -6737,7 +6894,7 @@ const __default__ = {
|
|
|
6737
6894
|
isRight: __props.isRight
|
|
6738
6895
|
}, null, 8
|
|
6739
6896
|
/* PROPS */
|
|
6740
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
6897
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
6741
6898
|
class: "kq3d-flood-analysis-tip"
|
|
6742
6899
|
}, {
|
|
6743
6900
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).floodTips), 1
|
|
@@ -7072,7 +7229,7 @@ const __default__ = {
|
|
|
7072
7229
|
alt: ""
|
|
7073
7230
|
}, null, 8
|
|
7074
7231
|
/* PROPS */
|
|
7075
|
-
,
|
|
7232
|
+
, _hoisted_2)]),
|
|
7076
7233
|
_: 2
|
|
7077
7234
|
/* DYNAMIC */
|
|
7078
7235
|
|
|
@@ -7113,7 +7270,7 @@ const __default__ = {
|
|
|
7113
7270
|
|
|
7114
7271
|
}, 8
|
|
7115
7272
|
/* PROPS */
|
|
7116
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
7273
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
7117
7274
|
onClick: _cache[22] || (_cache[22] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
7118
7275
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startAnalysis,
|
|
7119
7276
|
type: "primary"
|
|
@@ -7138,7 +7295,7 @@ const __default__ = {
|
|
|
7138
7295
|
|
|
7139
7296
|
}, 8
|
|
7140
7297
|
/* PROPS */
|
|
7141
|
-
, ["title"])])], 2
|
|
7298
|
+
, ["title"])])])], 2
|
|
7142
7299
|
/* CLASS */
|
|
7143
7300
|
);
|
|
7144
7301
|
};
|
|
@@ -7496,6 +7653,9 @@ var headertemp = __webpack_require__(519);
|
|
|
7496
7653
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/gpuspatialquery/GPUSpatialQuery.vue?vue&type=script&setup=true&lang=js
|
|
7497
7654
|
|
|
7498
7655
|
const _hoisted_1 = {
|
|
7656
|
+
class: "kq3d-gpu-spatial-query-box"
|
|
7657
|
+
};
|
|
7658
|
+
const _hoisted_2 = {
|
|
7499
7659
|
class: "kq3d-gpu-spatial-query-footer"
|
|
7500
7660
|
};
|
|
7501
7661
|
|
|
@@ -7706,7 +7866,7 @@ const __default__ = {
|
|
|
7706
7866
|
isRight: __props.isRight
|
|
7707
7867
|
}, null, 8
|
|
7708
7868
|
/* PROPS */
|
|
7709
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
7869
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
7710
7870
|
"label-width": "100px",
|
|
7711
7871
|
"label-position": "left"
|
|
7712
7872
|
}, {
|
|
@@ -8065,7 +8225,7 @@ const __default__ = {
|
|
|
8065
8225
|
|
|
8066
8226
|
}, 8
|
|
8067
8227
|
/* PROPS */
|
|
8068
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
8228
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
8069
8229
|
onClick: _cache[20] || (_cache[20] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => query(), ["stop"])),
|
|
8070
8230
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).gpuQuery,
|
|
8071
8231
|
type: "primary"
|
|
@@ -8090,7 +8250,7 @@ const __default__ = {
|
|
|
8090
8250
|
|
|
8091
8251
|
}, 8
|
|
8092
8252
|
/* PROPS */
|
|
8093
|
-
, ["title"])])], 2
|
|
8253
|
+
, ["title"])])])], 2
|
|
8094
8254
|
/* CLASS */
|
|
8095
8255
|
);
|
|
8096
8256
|
};
|
|
@@ -8840,67 +9000,70 @@ var headertemp = __webpack_require__(519);
|
|
|
8840
9000
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/isolineanalysis/IsolineAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
8841
9001
|
|
|
8842
9002
|
const _hoisted_1 = {
|
|
8843
|
-
class: "kq3d-isoline-analysis-
|
|
9003
|
+
class: "kq3d-isoline-analysis-box"
|
|
8844
9004
|
};
|
|
8845
9005
|
const _hoisted_2 = {
|
|
8846
|
-
|
|
9006
|
+
class: "kq3d-isoline-analysis-span"
|
|
8847
9007
|
};
|
|
8848
9008
|
const _hoisted_3 = {
|
|
8849
|
-
|
|
9009
|
+
key: 0
|
|
8850
9010
|
};
|
|
8851
9011
|
const _hoisted_4 = {
|
|
8852
|
-
|
|
9012
|
+
class: "kq3d-isoline-analysis-heightspan"
|
|
8853
9013
|
};
|
|
8854
9014
|
const _hoisted_5 = {
|
|
9015
|
+
key: 1
|
|
9016
|
+
};
|
|
9017
|
+
const _hoisted_6 = {
|
|
8855
9018
|
style: {
|
|
8856
9019
|
"width": "15%",
|
|
8857
9020
|
"text-align": "left"
|
|
8858
9021
|
}
|
|
8859
9022
|
};
|
|
8860
9023
|
|
|
8861
|
-
const
|
|
9024
|
+
const _hoisted_7 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
8862
9025
|
class: "kq3d-isoline-analysis-line"
|
|
8863
9026
|
}, null, -1
|
|
8864
9027
|
/* HOISTED */
|
|
8865
9028
|
);
|
|
8866
9029
|
|
|
8867
|
-
const
|
|
9030
|
+
const _hoisted_8 = {
|
|
8868
9031
|
style: {
|
|
8869
9032
|
"width": "15%",
|
|
8870
9033
|
"text-align": "right"
|
|
8871
9034
|
}
|
|
8872
9035
|
};
|
|
8873
|
-
const
|
|
8874
|
-
const
|
|
9036
|
+
const _hoisted_9 = ["src"];
|
|
9037
|
+
const _hoisted_10 = {
|
|
8875
9038
|
key: 0
|
|
8876
9039
|
};
|
|
8877
|
-
const
|
|
9040
|
+
const _hoisted_11 = {
|
|
8878
9041
|
class: "kq3d-isoline-analysis-heightspan"
|
|
8879
9042
|
};
|
|
8880
|
-
const
|
|
9043
|
+
const _hoisted_12 = {
|
|
8881
9044
|
key: 1
|
|
8882
9045
|
};
|
|
8883
|
-
const
|
|
9046
|
+
const _hoisted_13 = {
|
|
8884
9047
|
style: {
|
|
8885
9048
|
"width": "15%",
|
|
8886
9049
|
"text-align": "left"
|
|
8887
9050
|
}
|
|
8888
9051
|
};
|
|
8889
9052
|
|
|
8890
|
-
const
|
|
9053
|
+
const _hoisted_14 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
8891
9054
|
class: "kq3d-isoline-analysis-line"
|
|
8892
9055
|
}, null, -1
|
|
8893
9056
|
/* HOISTED */
|
|
8894
9057
|
);
|
|
8895
9058
|
|
|
8896
|
-
const
|
|
9059
|
+
const _hoisted_15 = {
|
|
8897
9060
|
style: {
|
|
8898
9061
|
"width": "15%",
|
|
8899
9062
|
"text-align": "right"
|
|
8900
9063
|
}
|
|
8901
9064
|
};
|
|
8902
|
-
const
|
|
8903
|
-
const
|
|
9065
|
+
const _hoisted_16 = ["src"];
|
|
9066
|
+
const _hoisted_17 = {
|
|
8904
9067
|
class: "kq3d-isoline-analysis-footer"
|
|
8905
9068
|
};
|
|
8906
9069
|
|
|
@@ -9289,13 +9452,13 @@ const __default__ = {
|
|
|
9289
9452
|
isRight: __props.isRight
|
|
9290
9453
|
}, null, 8
|
|
9291
9454
|
/* PROPS */
|
|
9292
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
9455
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
9293
9456
|
gutter: 20
|
|
9294
9457
|
}, {
|
|
9295
9458
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
9296
9459
|
span: 6
|
|
9297
9460
|
}, {
|
|
9298
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
9461
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fillType), 1
|
|
9299
9462
|
/* TEXT */
|
|
9300
9463
|
)]),
|
|
9301
9464
|
_: 1
|
|
@@ -9996,7 +10159,7 @@ const __default__ = {
|
|
|
9996
10159
|
_: 1
|
|
9997
10160
|
/* STABLE */
|
|
9998
10161
|
|
|
9999
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 0 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div",
|
|
10162
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 0 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
10000
10163
|
style: {
|
|
10001
10164
|
"display": "flex"
|
|
10002
10165
|
}
|
|
@@ -10054,7 +10217,7 @@ const __default__ = {
|
|
|
10054
10217
|
"controls-position": "right"
|
|
10055
10218
|
}, null, 8
|
|
10056
10219
|
/* PROPS */
|
|
10057
|
-
, ["modelValue", "onUpdate:modelValue"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
10220
|
+
, ["modelValue", "onUpdate:modelValue"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_4, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).to), 1
|
|
10058
10221
|
/* TEXT */
|
|
10059
10222
|
), index > 0 && index < (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList).length - 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_input_number, {
|
|
10060
10223
|
key: 2,
|
|
@@ -10109,7 +10272,7 @@ const __default__ = {
|
|
|
10109
10272
|
);
|
|
10110
10273
|
}), 128
|
|
10111
10274
|
/* KEYED_FRAGMENT */
|
|
10112
|
-
))])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div",
|
|
10275
|
+
))])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_5, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
10113
10276
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
10114
10277
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).gradientColor
|
|
10115
10278
|
}, {
|
|
@@ -10118,9 +10281,9 @@ const __default__ = {
|
|
|
10118
10281
|
"display": "flex"
|
|
10119
10282
|
}
|
|
10120
10283
|
}, {
|
|
10121
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
10284
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_6, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight) + "m", 1
|
|
10122
10285
|
/* TEXT */
|
|
10123
|
-
),
|
|
10286
|
+
), _hoisted_7, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_8, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight) + "m", 1
|
|
10124
10287
|
/* TEXT */
|
|
10125
10288
|
)]),
|
|
10126
10289
|
_: 1
|
|
@@ -10142,7 +10305,7 @@ const __default__ = {
|
|
|
10142
10305
|
alt: "无"
|
|
10143
10306
|
}, null, 8
|
|
10144
10307
|
/* PROPS */
|
|
10145
|
-
,
|
|
10308
|
+
, _hoisted_9)]),
|
|
10146
10309
|
_: 2
|
|
10147
10310
|
/* DYNAMIC */
|
|
10148
10311
|
|
|
@@ -10824,7 +10987,7 @@ const __default__ = {
|
|
|
10824
10987
|
_: 1
|
|
10825
10988
|
/* STABLE */
|
|
10826
10989
|
|
|
10827
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 0 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div",
|
|
10990
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 0 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_10, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
10828
10991
|
style: {
|
|
10829
10992
|
"display": "flex"
|
|
10830
10993
|
}
|
|
@@ -10882,7 +11045,7 @@ const __default__ = {
|
|
|
10882
11045
|
"controls-position": "right"
|
|
10883
11046
|
}, null, 8
|
|
10884
11047
|
/* PROPS */
|
|
10885
|
-
, ["modelValue", "onUpdate:modelValue"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
11048
|
+
, ["modelValue", "onUpdate:modelValue"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_11, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).to), 1
|
|
10886
11049
|
/* TEXT */
|
|
10887
11050
|
), index > 0 && index < (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList).length - 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_input_number, {
|
|
10888
11051
|
key: 2,
|
|
@@ -10937,7 +11100,7 @@ const __default__ = {
|
|
|
10937
11100
|
);
|
|
10938
11101
|
}), 128
|
|
10939
11102
|
/* KEYED_FRAGMENT */
|
|
10940
|
-
))])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div",
|
|
11103
|
+
))])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_12, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
10941
11104
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
10942
11105
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).gradientColor
|
|
10943
11106
|
}, {
|
|
@@ -10946,9 +11109,9 @@ const __default__ = {
|
|
|
10946
11109
|
"display": "flex"
|
|
10947
11110
|
}
|
|
10948
11111
|
}, {
|
|
10949
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
11112
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_13, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight) + "m", 1
|
|
10950
11113
|
/* TEXT */
|
|
10951
|
-
),
|
|
11114
|
+
), _hoisted_14, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_15, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight) + "m", 1
|
|
10952
11115
|
/* TEXT */
|
|
10953
11116
|
)]),
|
|
10954
11117
|
_: 1
|
|
@@ -10970,7 +11133,7 @@ const __default__ = {
|
|
|
10970
11133
|
alt: ""
|
|
10971
11134
|
}, null, 8
|
|
10972
11135
|
/* PROPS */
|
|
10973
|
-
,
|
|
11136
|
+
, _hoisted_16)]),
|
|
10974
11137
|
_: 2
|
|
10975
11138
|
/* DYNAMIC */
|
|
10976
11139
|
|
|
@@ -11023,7 +11186,7 @@ const __default__ = {
|
|
|
11023
11186
|
|
|
11024
11187
|
}, 8
|
|
11025
11188
|
/* PROPS */
|
|
11026
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
11189
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_17, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
11027
11190
|
onClick: _cache[110] || (_cache[110] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
11028
11191
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startAnalysis,
|
|
11029
11192
|
type: "primary"
|
|
@@ -11048,7 +11211,7 @@ const __default__ = {
|
|
|
11048
11211
|
|
|
11049
11212
|
}, 8
|
|
11050
11213
|
/* PROPS */
|
|
11051
|
-
, ["title"])])], 2
|
|
11214
|
+
, ["title"])])])], 2
|
|
11052
11215
|
/* CLASS */
|
|
11053
11216
|
);
|
|
11054
11217
|
};
|
|
@@ -11964,9 +12127,12 @@ var headertemp = __webpack_require__(519);
|
|
|
11964
12127
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/modelselect/ModelSelect.vue?vue&type=script&setup=true&lang=js
|
|
11965
12128
|
|
|
11966
12129
|
const _hoisted_1 = {
|
|
11967
|
-
class: "
|
|
12130
|
+
class: "kq3d-model-select-box"
|
|
11968
12131
|
};
|
|
11969
12132
|
const _hoisted_2 = {
|
|
12133
|
+
class: "modelTree"
|
|
12134
|
+
};
|
|
12135
|
+
const _hoisted_3 = {
|
|
11970
12136
|
class: "footer-buttons"
|
|
11971
12137
|
};
|
|
11972
12138
|
|
|
@@ -11983,7 +12149,7 @@ const __default__ = {
|
|
|
11983
12149
|
//指定组件绑定的viewer对象的div的id
|
|
11984
12150
|
mapTarget: String,
|
|
11985
12151
|
modeFiled: {
|
|
11986
|
-
default:
|
|
12152
|
+
default: "id",
|
|
11987
12153
|
type: String
|
|
11988
12154
|
},
|
|
11989
12155
|
// 外部字段别名映射
|
|
@@ -12128,11 +12294,11 @@ const __default__ = {
|
|
|
12128
12294
|
isRight: __props.isRight
|
|
12129
12295
|
}, null, 8
|
|
12130
12296
|
/* PROPS */
|
|
12131
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
12297
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
12132
12298
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
12133
12299
|
span: 8
|
|
12134
12300
|
}, {
|
|
12135
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
12301
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_scrollbar, {
|
|
12136
12302
|
class: "scrollbarClass"
|
|
12137
12303
|
}, {
|
|
12138
12304
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_KqTree, {
|
|
@@ -12194,7 +12360,7 @@ const __default__ = {
|
|
|
12194
12360
|
_: 1
|
|
12195
12361
|
/* STABLE */
|
|
12196
12362
|
|
|
12197
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
12363
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
12198
12364
|
onClick: _cache[0] || (_cache[0] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => pick(), ["stop"])),
|
|
12199
12365
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pick,
|
|
12200
12366
|
type: "primary"
|
|
@@ -12219,7 +12385,7 @@ const __default__ = {
|
|
|
12219
12385
|
|
|
12220
12386
|
}, 8
|
|
12221
12387
|
/* PROPS */
|
|
12222
|
-
, ["title"])])], 2
|
|
12388
|
+
, ["title"])])])], 2
|
|
12223
12389
|
/* CLASS */
|
|
12224
12390
|
);
|
|
12225
12391
|
};
|
|
@@ -12498,6 +12664,9 @@ var headertemp = __webpack_require__(519);
|
|
|
12498
12664
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/particleeffect/ParticleEffect.vue?vue&type=script&setup=true&lang=js
|
|
12499
12665
|
|
|
12500
12666
|
const _hoisted_1 = {
|
|
12667
|
+
class: "kq3d-particle-effect-box"
|
|
12668
|
+
};
|
|
12669
|
+
const _hoisted_2 = {
|
|
12501
12670
|
class: "kq3d-particle-effect-footer"
|
|
12502
12671
|
};
|
|
12503
12672
|
|
|
@@ -12702,7 +12871,7 @@ const __default__ = {
|
|
|
12702
12871
|
isRight: __props.isRight
|
|
12703
12872
|
}, null, 8
|
|
12704
12873
|
/* PROPS */
|
|
12705
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
12874
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
12706
12875
|
gutter: 20,
|
|
12707
12876
|
class: "rowclass"
|
|
12708
12877
|
}, {
|
|
@@ -13267,7 +13436,7 @@ const __default__ = {
|
|
|
13267
13436
|
|
|
13268
13437
|
}, 8
|
|
13269
13438
|
/* PROPS */
|
|
13270
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
13439
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
13271
13440
|
onClick: _cache[38] || (_cache[38] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => add(), ["stop"])),
|
|
13272
13441
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).add,
|
|
13273
13442
|
type: "primary"
|
|
@@ -13292,7 +13461,7 @@ const __default__ = {
|
|
|
13292
13461
|
|
|
13293
13462
|
}, 8
|
|
13294
13463
|
/* PROPS */
|
|
13295
|
-
, ["title"])])], 2
|
|
13464
|
+
, ["title"])])])], 2
|
|
13296
13465
|
/* CLASS */
|
|
13297
13466
|
);
|
|
13298
13467
|
};
|
|
@@ -13534,7 +13703,7 @@ var headertemp = __webpack_require__(519);
|
|
|
13534
13703
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/planeclip/PlaneClip.vue?vue&type=script&setup=true&lang=js
|
|
13535
13704
|
|
|
13536
13705
|
const _hoisted_1 = {
|
|
13537
|
-
class: "kq3d-plane-clip-
|
|
13706
|
+
class: "kq3d-plane-clip-box"
|
|
13538
13707
|
};
|
|
13539
13708
|
const _hoisted_2 = {
|
|
13540
13709
|
class: "kq3d-plane-clip-span"
|
|
@@ -13543,6 +13712,9 @@ const _hoisted_3 = {
|
|
|
13543
13712
|
class: "kq3d-plane-clip-span"
|
|
13544
13713
|
};
|
|
13545
13714
|
const _hoisted_4 = {
|
|
13715
|
+
class: "kq3d-plane-clip-span"
|
|
13716
|
+
};
|
|
13717
|
+
const _hoisted_5 = {
|
|
13546
13718
|
class: "kq3d-plane-clip-footer"
|
|
13547
13719
|
};
|
|
13548
13720
|
|
|
@@ -13729,7 +13901,7 @@ const __default__ = {
|
|
|
13729
13901
|
isRight: __props.isRight
|
|
13730
13902
|
}, null, 8
|
|
13731
13903
|
/* PROPS */
|
|
13732
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
13904
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
13733
13905
|
gutter: 20,
|
|
13734
13906
|
class: "rowClass"
|
|
13735
13907
|
}, {
|
|
@@ -13737,7 +13909,7 @@ const __default__ = {
|
|
|
13737
13909
|
span: 6,
|
|
13738
13910
|
class: "colClass"
|
|
13739
13911
|
}, {
|
|
13740
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
13912
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clipObj), 1
|
|
13741
13913
|
/* TEXT */
|
|
13742
13914
|
)]),
|
|
13743
13915
|
_: 1
|
|
@@ -13791,7 +13963,7 @@ const __default__ = {
|
|
|
13791
13963
|
span: 6,
|
|
13792
13964
|
class: "colClass"
|
|
13793
13965
|
}, {
|
|
13794
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
13966
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_3, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clipStyle), 1
|
|
13795
13967
|
/* TEXT */
|
|
13796
13968
|
)]),
|
|
13797
13969
|
_: 1
|
|
@@ -13843,7 +14015,7 @@ const __default__ = {
|
|
|
13843
14015
|
span: 6,
|
|
13844
14016
|
class: "colClass"
|
|
13845
14017
|
}, {
|
|
13846
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
14018
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_4, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clipPattern), 1
|
|
13847
14019
|
/* TEXT */
|
|
13848
14020
|
)]),
|
|
13849
14021
|
_: 1
|
|
@@ -14026,7 +14198,7 @@ const __default__ = {
|
|
|
14026
14198
|
|
|
14027
14199
|
}, 8
|
|
14028
14200
|
/* PROPS */
|
|
14029
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
14201
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_5, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
14030
14202
|
onClick: _cache[14] || (_cache[14] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => clip(), ["stop"])),
|
|
14031
14203
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clip,
|
|
14032
14204
|
type: "primary"
|
|
@@ -14051,7 +14223,7 @@ const __default__ = {
|
|
|
14051
14223
|
|
|
14052
14224
|
}, 8
|
|
14053
14225
|
/* PROPS */
|
|
14054
|
-
, ["title"])])], 2
|
|
14226
|
+
, ["title"])])])], 2
|
|
14055
14227
|
/* CLASS */
|
|
14056
14228
|
);
|
|
14057
14229
|
};
|
|
@@ -14370,12 +14542,15 @@ var headertemp = __webpack_require__(519);
|
|
|
14370
14542
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/profileanalysis/ProfileAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
14371
14543
|
|
|
14372
14544
|
const _hoisted_1 = {
|
|
14373
|
-
class: "kq3d-profile-analysis-
|
|
14545
|
+
class: "kq3d-profile-analysis-box"
|
|
14374
14546
|
};
|
|
14375
14547
|
const _hoisted_2 = {
|
|
14376
|
-
class: "kq3d-profile-analysis-
|
|
14548
|
+
class: "kq3d-profile-analysis-footer"
|
|
14377
14549
|
};
|
|
14378
14550
|
const _hoisted_3 = {
|
|
14551
|
+
class: "kq3d-profile-analysis-result"
|
|
14552
|
+
};
|
|
14553
|
+
const _hoisted_4 = {
|
|
14379
14554
|
id: "resultCahrt",
|
|
14380
14555
|
class: "resultCahrt"
|
|
14381
14556
|
};
|
|
@@ -14567,7 +14742,7 @@ const __default__ = {
|
|
|
14567
14742
|
isRight: __props.isRight
|
|
14568
14743
|
}, null, 8
|
|
14569
14744
|
/* PROPS */
|
|
14570
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
14745
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
14571
14746
|
class: "kq3d-profile-analysis-tip"
|
|
14572
14747
|
}, {
|
|
14573
14748
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).profileTips), 1
|
|
@@ -14841,7 +15016,7 @@ const __default__ = {
|
|
|
14841
15016
|
|
|
14842
15017
|
}, 8
|
|
14843
15018
|
/* PROPS */
|
|
14844
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
15019
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
14845
15020
|
onClick: _cache[9] || (_cache[9] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
14846
15021
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startAnalysis,
|
|
14847
15022
|
type: "primary"
|
|
@@ -14866,9 +15041,9 @@ const __default__ = {
|
|
|
14866
15041
|
|
|
14867
15042
|
}, 8
|
|
14868
15043
|
/* PROPS */
|
|
14869
|
-
, ["title"])]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
15044
|
+
, ["title"])]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_4, null, 512
|
|
14870
15045
|
/* NEED_PATCH */
|
|
14871
|
-
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(resultCahrtVis)]])])], 2
|
|
15046
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(resultCahrtVis)]])])])], 2
|
|
14872
15047
|
/* CLASS */
|
|
14873
15048
|
);
|
|
14874
15049
|
};
|
|
@@ -16451,23 +16626,26 @@ var headertemp = __webpack_require__(519);
|
|
|
16451
16626
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/shadowanalysis/ShadowAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
16452
16627
|
|
|
16453
16628
|
const _hoisted_1 = {
|
|
16454
|
-
class: "kq3d-shadow-analysis-
|
|
16629
|
+
class: "kq3d-shadow-analysis-box"
|
|
16455
16630
|
};
|
|
16456
16631
|
const _hoisted_2 = {
|
|
16457
16632
|
class: "kq3d-shadow-analysis-span"
|
|
16458
16633
|
};
|
|
16634
|
+
const _hoisted_3 = {
|
|
16635
|
+
class: "kq3d-shadow-analysis-span"
|
|
16636
|
+
};
|
|
16459
16637
|
|
|
16460
|
-
const
|
|
16638
|
+
const _hoisted_4 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, "0.0", -1
|
|
16461
16639
|
/* HOISTED */
|
|
16462
16640
|
);
|
|
16463
16641
|
|
|
16464
|
-
const
|
|
16642
|
+
const _hoisted_5 = ["src"];
|
|
16465
16643
|
|
|
16466
|
-
const
|
|
16644
|
+
const _hoisted_6 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, "1.0", -1
|
|
16467
16645
|
/* HOISTED */
|
|
16468
16646
|
);
|
|
16469
16647
|
|
|
16470
|
-
const
|
|
16648
|
+
const _hoisted_7 = {
|
|
16471
16649
|
class: "kq3d-shadow-analysis-footer"
|
|
16472
16650
|
};
|
|
16473
16651
|
|
|
@@ -16769,14 +16947,14 @@ const __default__ = {
|
|
|
16769
16947
|
isRight: __props.isRight
|
|
16770
16948
|
}, null, 8
|
|
16771
16949
|
/* PROPS */
|
|
16772
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
16950
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
16773
16951
|
class: "kq3d-shadow-analysis-datetime"
|
|
16774
16952
|
}, {
|
|
16775
16953
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
16776
16954
|
span: 4,
|
|
16777
16955
|
class: "colDate"
|
|
16778
16956
|
}, {
|
|
16779
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
16957
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).analyseDate), 1
|
|
16780
16958
|
/* TEXT */
|
|
16781
16959
|
)]),
|
|
16782
16960
|
_: 1
|
|
@@ -16810,7 +16988,7 @@ const __default__ = {
|
|
|
16810
16988
|
span: 4,
|
|
16811
16989
|
class: "colTime"
|
|
16812
16990
|
}, {
|
|
16813
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
16991
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_3, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).time), 1
|
|
16814
16992
|
/* TEXT */
|
|
16815
16993
|
)]),
|
|
16816
16994
|
_: 1
|
|
@@ -16840,7 +17018,7 @@ const __default__ = {
|
|
|
16840
17018
|
_: 1
|
|
16841
17019
|
/* STABLE */
|
|
16842
17020
|
|
|
16843
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-row class=\"kq3d-shadow-analysis-datetime\">\r\n
|
|
17021
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-row class=\"kq3d-shadow-analysis-datetime\">\r\n <kq-col :span=\"6\">\r\n <span class=\"kq3d-shadow-analysis-span\">{{ language.analysisYear }}</span>\r\n </kq-col>\r\n <kq-col :span=\"18\">\r\n <kq-date-picker v-model=\"year\" align=\"right\" type=\"year\" format=\"YYYY年\"></kq-date-picker>\r\n <kq-row :gutter=\"20\">\r\n <kq-col :span=\"20\">\r\n <kq-slider\r\n v-model=\"month\"\r\n :step=\"1\"\r\n :min=\"formItem.1\"\r\n :max=\"formItem.12\"\r\n range\r\n :show-tooltip=\"false\"\r\n @change=\"changeMonth\"\r\n :marks=\"monthMarks\"></kq-slider>\r\n </kq-col>\r\n <kq-col :span=\"4\" class=\"kq3d-shadow-analysis-timeline\">\r\n <kq-icon @click=\"playOrPauseMonth\">\r\n <IconVideoPlay v-if=\"!playMonth\" />\r\n <IconVideoPause v-else />\r\n </kq-icon>\r\n </kq-col>\r\n </kq-row>\r\n </kq-col>\r\n </kq-row> "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
16844
17022
|
class: "kq3d-shadow-analysis-tip"
|
|
16845
17023
|
}, {
|
|
16846
17024
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).shadowTips), 1
|
|
@@ -17206,12 +17384,12 @@ const __default__ = {
|
|
|
17206
17384
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
17207
17385
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).shadowRateLegend
|
|
17208
17386
|
}, {
|
|
17209
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
17387
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_4, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
|
|
17210
17388
|
src: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(const_image_.SHADOW_LEGEND_URL),
|
|
17211
17389
|
alt: ""
|
|
17212
17390
|
}, null, 8
|
|
17213
17391
|
/* PROPS */
|
|
17214
|
-
,
|
|
17392
|
+
, _hoisted_5), _hoisted_6]),
|
|
17215
17393
|
_: 1
|
|
17216
17394
|
/* STABLE */
|
|
17217
17395
|
|
|
@@ -17221,7 +17399,7 @@ const __default__ = {
|
|
|
17221
17399
|
_: 1
|
|
17222
17400
|
/* STABLE */
|
|
17223
17401
|
|
|
17224
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-row :gutter=\"20\" style=\"display: flex\">\r\n
|
|
17402
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-row :gutter=\"20\" style=\"display: flex\">\r\n <kq-col :span=\"12\">\r\n <kq-checkbox v-model=\"formItem.showBuilding\">{{ language.showBuilding }}</kq-checkbox>\r\n </kq-col>\r\n <kq-col :span=\"12\">\r\n <kq-checkbox v-model=\"formItem.showVoxel\">{{ language.showVoxel }}</kq-checkbox>\r\n </kq-col>\r\n </kq-row> ")]),
|
|
17225
17403
|
_: 1
|
|
17226
17404
|
/* STABLE */
|
|
17227
17405
|
|
|
@@ -17237,7 +17415,7 @@ const __default__ = {
|
|
|
17237
17415
|
|
|
17238
17416
|
}, 8
|
|
17239
17417
|
/* PROPS */
|
|
17240
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
17418
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_7, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
17241
17419
|
onClick: _cache[33] || (_cache[33] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
17242
17420
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startAnalysis,
|
|
17243
17421
|
type: "primary"
|
|
@@ -17275,7 +17453,7 @@ const __default__ = {
|
|
|
17275
17453
|
|
|
17276
17454
|
}, 8
|
|
17277
17455
|
/* PROPS */
|
|
17278
|
-
, ["title"])])], 2
|
|
17456
|
+
, ["title"])])])], 2
|
|
17279
17457
|
/* CLASS */
|
|
17280
17458
|
);
|
|
17281
17459
|
};
|
|
@@ -17604,6 +17782,9 @@ var headertemp = __webpack_require__(519);
|
|
|
17604
17782
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sightlineanalysis/SightlineAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
17605
17783
|
|
|
17606
17784
|
const _hoisted_1 = {
|
|
17785
|
+
class: "kq3d-sightline-analysis-box"
|
|
17786
|
+
};
|
|
17787
|
+
const _hoisted_2 = {
|
|
17607
17788
|
class: "kq3d-sightline-analysis-footer"
|
|
17608
17789
|
};
|
|
17609
17790
|
|
|
@@ -17766,7 +17947,7 @@ const __default__ = {
|
|
|
17766
17947
|
isRight: __props.isRight
|
|
17767
17948
|
}, null, 8
|
|
17768
17949
|
/* PROPS */
|
|
17769
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
17950
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
17770
17951
|
class: "kq3d-sightline-analysis-tip"
|
|
17771
17952
|
}, {
|
|
17772
17953
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).sightTips), 1
|
|
@@ -17880,7 +18061,7 @@ const __default__ = {
|
|
|
17880
18061
|
|
|
17881
18062
|
}, 8
|
|
17882
18063
|
/* PROPS */
|
|
17883
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
18064
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
17884
18065
|
onClick: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)(addSeePoint, ["stop"]),
|
|
17885
18066
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).seePoint,
|
|
17886
18067
|
type: "primary"
|
|
@@ -17918,7 +18099,7 @@ const __default__ = {
|
|
|
17918
18099
|
|
|
17919
18100
|
}, 8
|
|
17920
18101
|
/* PROPS */
|
|
17921
|
-
, ["onClick", "title"])])], 2
|
|
18102
|
+
, ["onClick", "title"])])])], 2
|
|
17922
18103
|
/* CLASS */
|
|
17923
18104
|
);
|
|
17924
18105
|
};
|
|
@@ -18254,12 +18435,15 @@ var external_echarts_namespaceObject = require("echarts");
|
|
|
18254
18435
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/skylineanalysis/SkylineAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
18255
18436
|
|
|
18256
18437
|
const _hoisted_1 = {
|
|
18257
|
-
class: "kq3d-skyline-analysis-
|
|
18438
|
+
class: "kq3d-skyline-analysis-box"
|
|
18258
18439
|
};
|
|
18259
18440
|
const _hoisted_2 = {
|
|
18260
|
-
class: "kq3d-skyline-analysis-
|
|
18441
|
+
class: "kq3d-skyline-analysis-footer"
|
|
18261
18442
|
};
|
|
18262
18443
|
const _hoisted_3 = {
|
|
18444
|
+
class: "kq3d-skyline-analysis-result"
|
|
18445
|
+
};
|
|
18446
|
+
const _hoisted_4 = {
|
|
18263
18447
|
key: 0,
|
|
18264
18448
|
id: "resultEcahrt",
|
|
18265
18449
|
class: "resultEcahrt"
|
|
@@ -18452,7 +18636,7 @@ const __default__ = {
|
|
|
18452
18636
|
isRight: __props.isRight
|
|
18453
18637
|
}, null, 8
|
|
18454
18638
|
/* PROPS */
|
|
18455
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
|
|
18639
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
|
|
18456
18640
|
"model-value": (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(collapseValue),
|
|
18457
18641
|
class: "kq3d-skyline-analysis-collapse"
|
|
18458
18642
|
}, {
|
|
@@ -18630,7 +18814,7 @@ const __default__ = {
|
|
|
18630
18814
|
|
|
18631
18815
|
}, 8
|
|
18632
18816
|
/* PROPS */
|
|
18633
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
18817
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
18634
18818
|
gutter: 20,
|
|
18635
18819
|
class: "btnClass"
|
|
18636
18820
|
}, {
|
|
@@ -18723,7 +18907,7 @@ const __default__ = {
|
|
|
18723
18907
|
_: 1
|
|
18724
18908
|
/* STABLE */
|
|
18725
18909
|
|
|
18726
|
-
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
18910
|
+
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(resultEcahrtVis) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_4)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)])])], 2
|
|
18727
18911
|
/* CLASS */
|
|
18728
18912
|
);
|
|
18729
18913
|
};
|
|
@@ -19039,34 +19223,37 @@ var headertemp = __webpack_require__(519);
|
|
|
19039
19223
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/slopeanalysis/SlopeAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
19040
19224
|
|
|
19041
19225
|
const _hoisted_1 = {
|
|
19042
|
-
|
|
19226
|
+
class: "kq3d-slope-analysis-box"
|
|
19043
19227
|
};
|
|
19044
19228
|
const _hoisted_2 = {
|
|
19045
|
-
|
|
19229
|
+
key: 0
|
|
19046
19230
|
};
|
|
19047
19231
|
const _hoisted_3 = {
|
|
19232
|
+
class: "kq3d-slope-analysis-span"
|
|
19233
|
+
};
|
|
19234
|
+
const _hoisted_4 = {
|
|
19048
19235
|
key: 1
|
|
19049
19236
|
};
|
|
19050
19237
|
|
|
19051
|
-
const
|
|
19238
|
+
const _hoisted_5 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", null, "0°", -1
|
|
19052
19239
|
/* HOISTED */
|
|
19053
19240
|
);
|
|
19054
19241
|
|
|
19055
|
-
const
|
|
19242
|
+
const _hoisted_6 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
19056
19243
|
class: "kq3d-slope-analysis-line"
|
|
19057
19244
|
}, null, -1
|
|
19058
19245
|
/* HOISTED */
|
|
19059
19246
|
);
|
|
19060
19247
|
|
|
19061
|
-
const
|
|
19248
|
+
const _hoisted_7 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", null, "90°", -1
|
|
19062
19249
|
/* HOISTED */
|
|
19063
19250
|
);
|
|
19064
19251
|
|
|
19065
|
-
const
|
|
19066
|
-
const
|
|
19252
|
+
const _hoisted_8 = ["src"];
|
|
19253
|
+
const _hoisted_9 = {
|
|
19067
19254
|
key: 2
|
|
19068
19255
|
};
|
|
19069
|
-
const
|
|
19256
|
+
const _hoisted_10 = {
|
|
19070
19257
|
class: "kq3d-slope-analysis-footer"
|
|
19071
19258
|
};
|
|
19072
19259
|
|
|
@@ -19325,8 +19512,8 @@ const __default__ = {
|
|
|
19325
19512
|
isRight: __props.isRight
|
|
19326
19513
|
}, null, 8
|
|
19327
19514
|
/* PROPS */
|
|
19328
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle !== 'slopeFilter' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_row, {
|
|
19329
|
-
key:
|
|
19515
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle !== 'slopeFilter' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_row, {
|
|
19516
|
+
key: 0,
|
|
19330
19517
|
class: "kq3d-slope-analysis-tip"
|
|
19331
19518
|
}, {
|
|
19332
19519
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).skylineTips), 1
|
|
@@ -19390,7 +19577,7 @@ const __default__ = {
|
|
|
19390
19577
|
_: 1
|
|
19391
19578
|
/* STABLE */
|
|
19392
19579
|
|
|
19393
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 'tableColor' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div",
|
|
19580
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 'tableColor' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
19394
19581
|
style: {
|
|
19395
19582
|
"display": "flex"
|
|
19396
19583
|
}
|
|
@@ -19449,7 +19636,7 @@ const __default__ = {
|
|
|
19449
19636
|
"controls-position": "right"
|
|
19450
19637
|
}, null, 8
|
|
19451
19638
|
/* PROPS */
|
|
19452
|
-
, ["modelValue", "onUpdate:modelValue"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
19639
|
+
, ["modelValue", "onUpdate:modelValue"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_3, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).to), 1
|
|
19453
19640
|
/* TEXT */
|
|
19454
19641
|
), index > 0 && index < (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList).length - 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_input_number, {
|
|
19455
19642
|
key: 2,
|
|
@@ -19504,7 +19691,7 @@ const __default__ = {
|
|
|
19504
19691
|
);
|
|
19505
19692
|
}), 128
|
|
19506
19693
|
/* KEYED_FRAGMENT */
|
|
19507
|
-
))])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 'colorImage' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div",
|
|
19694
|
+
))])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 'colorImage' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_4, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
19508
19695
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
19509
19696
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).gradientColor
|
|
19510
19697
|
}, {
|
|
@@ -19513,7 +19700,7 @@ const __default__ = {
|
|
|
19513
19700
|
"display": "flex"
|
|
19514
19701
|
}
|
|
19515
19702
|
}, {
|
|
19516
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
19703
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_5, _hoisted_6, _hoisted_7]),
|
|
19517
19704
|
_: 1
|
|
19518
19705
|
/* STABLE */
|
|
19519
19706
|
|
|
@@ -19533,7 +19720,7 @@ const __default__ = {
|
|
|
19533
19720
|
alt: ""
|
|
19534
19721
|
}, null, 8
|
|
19535
19722
|
/* PROPS */
|
|
19536
|
-
,
|
|
19723
|
+
, _hoisted_8)]),
|
|
19537
19724
|
_: 2
|
|
19538
19725
|
/* DYNAMIC */
|
|
19539
19726
|
|
|
@@ -19558,7 +19745,7 @@ const __default__ = {
|
|
|
19558
19745
|
_: 1
|
|
19559
19746
|
/* STABLE */
|
|
19560
19747
|
|
|
19561
|
-
})])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 'slopeFilter' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div",
|
|
19748
|
+
})])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 'slopeFilter' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_9, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
19562
19749
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
19563
19750
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).minSlope
|
|
19564
19751
|
}, {
|
|
@@ -19768,7 +19955,7 @@ const __default__ = {
|
|
|
19768
19955
|
|
|
19769
19956
|
}, 8
|
|
19770
19957
|
/* PROPS */
|
|
19771
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
19958
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_10, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
19772
19959
|
onClick: _cache[23] || (_cache[23] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
19773
19960
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startAnalysis,
|
|
19774
19961
|
type: "primary"
|
|
@@ -19793,7 +19980,7 @@ const __default__ = {
|
|
|
19793
19980
|
|
|
19794
19981
|
}, 8
|
|
19795
19982
|
/* PROPS */
|
|
19796
|
-
, ["title"])])], 2
|
|
19983
|
+
, ["title"])])])], 2
|
|
19797
19984
|
/* CLASS */
|
|
19798
19985
|
);
|
|
19799
19986
|
};
|
|
@@ -20227,12 +20414,15 @@ var headertemp = __webpack_require__(519);
|
|
|
20227
20414
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/terrainoperation/TerrainOperation.vue?vue&type=script&setup=true&lang=js
|
|
20228
20415
|
|
|
20229
20416
|
const _hoisted_1 = {
|
|
20230
|
-
class: "kq3d-terrain-operation-analysis-
|
|
20417
|
+
class: "kq3d-terrain-operation-analysis-box"
|
|
20231
20418
|
};
|
|
20232
20419
|
const _hoisted_2 = {
|
|
20233
|
-
|
|
20420
|
+
class: "kq3d-terrain-operation-analysis-span"
|
|
20234
20421
|
};
|
|
20235
20422
|
const _hoisted_3 = {
|
|
20423
|
+
key: 0
|
|
20424
|
+
};
|
|
20425
|
+
const _hoisted_4 = {
|
|
20236
20426
|
class: "kq3d-terrain-operation-analysis-footer"
|
|
20237
20427
|
};
|
|
20238
20428
|
|
|
@@ -20379,8 +20569,8 @@ const __default__ = {
|
|
|
20379
20569
|
isRight: __props.isRight
|
|
20380
20570
|
}, null, 8
|
|
20381
20571
|
/* PROPS */
|
|
20382
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), __props.operationMode === 0 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_row, {
|
|
20383
|
-
key:
|
|
20572
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [__props.operationMode === 0 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_row, {
|
|
20573
|
+
key: 0
|
|
20384
20574
|
}, {
|
|
20385
20575
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
|
|
20386
20576
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).terrainStyle,
|
|
@@ -20415,13 +20605,13 @@ const __default__ = {
|
|
|
20415
20605
|
/* STABLE */
|
|
20416
20606
|
|
|
20417
20607
|
})) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).terrainStyle === 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_row, {
|
|
20418
|
-
key:
|
|
20608
|
+
key: 1,
|
|
20419
20609
|
gutter: 10
|
|
20420
20610
|
}, {
|
|
20421
20611
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
20422
20612
|
span: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(currentLang) === 'zh' ? 7 : 10
|
|
20423
20613
|
}, {
|
|
20424
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
20614
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).excavationDepth), 1
|
|
20425
20615
|
/* TEXT */
|
|
20426
20616
|
)]),
|
|
20427
20617
|
_: 1
|
|
@@ -20477,13 +20667,13 @@ const __default__ = {
|
|
|
20477
20667
|
}, {
|
|
20478
20668
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).skylineTips), 1
|
|
20479
20669
|
/* TEXT */
|
|
20480
|
-
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).terrainStyle === 2 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("p",
|
|
20670
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).terrainStyle === 2 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("p", _hoisted_3, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)("(" + (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).reverseDrawPolygon + ")"), 1
|
|
20481
20671
|
/* TEXT */
|
|
20482
20672
|
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)]),
|
|
20483
20673
|
_: 1
|
|
20484
20674
|
/* STABLE */
|
|
20485
20675
|
|
|
20486
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
20676
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_4, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
20487
20677
|
onClick: _cache[7] || (_cache[7] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startOperation(), ["stop"])),
|
|
20488
20678
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startOperation,
|
|
20489
20679
|
type: "primary"
|
|
@@ -20508,7 +20698,7 @@ const __default__ = {
|
|
|
20508
20698
|
|
|
20509
20699
|
}, 8
|
|
20510
20700
|
/* PROPS */
|
|
20511
|
-
, ["title"])])], 2
|
|
20701
|
+
, ["title"])])])], 2
|
|
20512
20702
|
/* CLASS */
|
|
20513
20703
|
);
|
|
20514
20704
|
};
|
|
@@ -20880,6 +21070,9 @@ var headertemp = __webpack_require__(519);
|
|
|
20880
21070
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/viewshedanalysis/ViewshedAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
20881
21071
|
|
|
20882
21072
|
const _hoisted_1 = {
|
|
21073
|
+
class: "kq3d-viewshed-analysis-box"
|
|
21074
|
+
};
|
|
21075
|
+
const _hoisted_2 = {
|
|
20883
21076
|
class: "kq3d-viewshed-analysis-footer"
|
|
20884
21077
|
};
|
|
20885
21078
|
|
|
@@ -21066,7 +21259,7 @@ const __default__ = {
|
|
|
21066
21259
|
isRight: __props.isRight
|
|
21067
21260
|
}, null, 8
|
|
21068
21261
|
/* PROPS */
|
|
21069
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
21262
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
21070
21263
|
class: "kq3d-viewshed-analysis-tip"
|
|
21071
21264
|
}, {
|
|
21072
21265
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).viewshedTips), 1
|
|
@@ -21312,7 +21505,7 @@ const __default__ = {
|
|
|
21312
21505
|
|
|
21313
21506
|
}, 8
|
|
21314
21507
|
/* PROPS */
|
|
21315
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
21508
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
21316
21509
|
onClick: _cache[16] || (_cache[16] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
21317
21510
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startAnalysis,
|
|
21318
21511
|
type: "primary"
|
|
@@ -21337,7 +21530,7 @@ const __default__ = {
|
|
|
21337
21530
|
|
|
21338
21531
|
}, 8
|
|
21339
21532
|
/* PROPS */
|
|
21340
|
-
, ["title"])])], 2
|
|
21533
|
+
, ["title"])])])], 2
|
|
21341
21534
|
/* CLASS */
|
|
21342
21535
|
);
|
|
21343
21536
|
};
|
|
@@ -21564,6 +21757,9 @@ var headertemp = __webpack_require__(519);
|
|
|
21564
21757
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/weathereffect/WeatherEffect.vue?vue&type=script&setup=true&lang=js
|
|
21565
21758
|
|
|
21566
21759
|
const _hoisted_1 = {
|
|
21760
|
+
class: "kq3d-weather-effect-box"
|
|
21761
|
+
};
|
|
21762
|
+
const _hoisted_2 = {
|
|
21567
21763
|
class: "kq3d-weather-effect-footer"
|
|
21568
21764
|
};
|
|
21569
21765
|
|
|
@@ -21746,7 +21942,7 @@ const __default__ = {
|
|
|
21746
21942
|
isRight: __props.isRight
|
|
21747
21943
|
}, null, 8
|
|
21748
21944
|
/* PROPS */
|
|
21749
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
21945
|
+
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
21750
21946
|
gutter: 20,
|
|
21751
21947
|
class: "rowclass"
|
|
21752
21948
|
}, {
|
|
@@ -21963,7 +22159,7 @@ const __default__ = {
|
|
|
21963
22159
|
_: 1
|
|
21964
22160
|
/* STABLE */
|
|
21965
22161
|
|
|
21966
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-row>\r\n
|
|
22162
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-row>\r\n <kq-form-item :label=\"language.lifeCycle\">\r\n <kq-row style=\"display: flex\">\r\n <kq-col :span=\"16\">\r\n <kq-slider v-model=\"formItem.lifeCycle\" :step=\"1\" :min=\"1\" :max=\"50\" @input=\"paramsChanged('lifeCycle')\"></kq-slider>\r\n </kq-col>\r\n <kq-col :span=\"8\">\r\n <kq-input-number\r\n v-model=\"formItem.lifeCycle\"\r\n :step=\"1\"\r\n :min=\"1\"\r\n :max=\"50\"\r\n controls-position=\"right\"\r\n @input=\"paramsChanged('lifeCycle')\">\r\n </kq-input-number>\r\n </kq-col>\r\n </kq-row>\r\n </kq-form-item>\r\n </kq-row> "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
21967
22163
|
class: "rowclass"
|
|
21968
22164
|
}, {
|
|
21969
22165
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
@@ -22155,7 +22351,7 @@ const __default__ = {
|
|
|
22155
22351
|
|
|
22156
22352
|
}, 8
|
|
22157
22353
|
/* PROPS */
|
|
22158
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
22354
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
22159
22355
|
onClick: _cache[26] || (_cache[26] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => add(), ["stop"])),
|
|
22160
22356
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).add,
|
|
22161
22357
|
type: "primary"
|
|
@@ -22180,7 +22376,7 @@ const __default__ = {
|
|
|
22180
22376
|
|
|
22181
22377
|
}, 8
|
|
22182
22378
|
/* PROPS */
|
|
22183
|
-
, ["title"])])], 2
|
|
22379
|
+
, ["title"])])])], 2
|
|
22184
22380
|
/* CLASS */
|
|
22185
22381
|
);
|
|
22186
22382
|
};
|