@kq_npm/client3d_webgl_vue 4.2.7-beta → 4.2.9-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/index.js +404 -129
- package/isolineanalysis/index.js +237 -109
- package/package.json +1 -1
- package/sceneset/index.js +164 -17
- package/sceneview/index.js +403 -128
package/index.js
CHANGED
|
@@ -434,7 +434,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".coord-sightline{background:rgba(42,42
|
|
|
434
434
|
|
|
435
435
|
/***/ }),
|
|
436
436
|
|
|
437
|
-
/***/
|
|
437
|
+
/***/ 632:
|
|
438
438
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
439
439
|
|
|
440
440
|
"use strict";
|
|
@@ -23943,6 +23943,12 @@ class IsolineAnalysisViewModel {
|
|
|
23943
23943
|
setFirstCurve(show) {
|
|
23944
23944
|
this._options.firstCurve.show = show;
|
|
23945
23945
|
if (this._elevation) this._elevation.firstCurve = this._options.firstCurve;
|
|
23946
|
+
} //设置首曲线间隔
|
|
23947
|
+
|
|
23948
|
+
|
|
23949
|
+
setFirstCurveSpace(spaceing) {
|
|
23950
|
+
this._options.spaceing = Number(spaceing);
|
|
23951
|
+
if (this._elevation) this._elevation.spaceing = this._options.spaceing;
|
|
23946
23952
|
} //设置首曲线宽度
|
|
23947
23953
|
|
|
23948
23954
|
|
|
@@ -24201,10 +24207,16 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24201
24207
|
// 高程标注
|
|
24202
24208
|
firstCurve: props.settingParams && props.settingParams.firstCurve !== undefined || true,
|
|
24203
24209
|
// 首曲线
|
|
24210
|
+
spaceing: props.settingParams && props.settingParams.spaceing || 500,
|
|
24211
|
+
// 首曲线间隔
|
|
24212
|
+
minSpaceing: props.settingParams && props.settingParams.minSpaceing || 10,
|
|
24213
|
+
// 首曲线间隔最小值
|
|
24214
|
+
maxSpaceing: props.settingParams && props.settingParams.maxSpaceing || 1000,
|
|
24215
|
+
// 首曲线间隔最大值
|
|
24204
24216
|
firstCurveWidth: props.settingParams && props.settingParams.firstCurveWidth || 2,
|
|
24205
24217
|
// 首曲线宽度
|
|
24206
24218
|
minFirstCurveWidth: props.settingParams && props.settingParams.minFirstCurveWidth || 0,
|
|
24207
|
-
//
|
|
24219
|
+
// 首曲线宽度最小值
|
|
24208
24220
|
maxFirstCurveWidth: props.settingParams && props.settingParams.maxFirstCurveWidth || 5,
|
|
24209
24221
|
// 首曲线宽度最大值
|
|
24210
24222
|
firstCurveColor: props.settingParams && props.settingParams.firstCurveColor || "#E6A23C",
|
|
@@ -24280,7 +24292,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24280
24292
|
var options = {
|
|
24281
24293
|
minHeight: formItem.minHeight,
|
|
24282
24294
|
maxHeight: formItem.maxHeight,
|
|
24283
|
-
spaceing:
|
|
24295
|
+
spaceing: formItem.spaceing,
|
|
24284
24296
|
filltype: formItem.fillType,
|
|
24285
24297
|
fillStyle: formItem.fillStyle,
|
|
24286
24298
|
colorTableValue: [0.0, 0.1, 0.2, 0.3, 0.4],
|
|
@@ -24387,6 +24399,10 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24387
24399
|
viewModel.setFirstCurve(formItem.firstCurve);
|
|
24388
24400
|
break;
|
|
24389
24401
|
|
|
24402
|
+
case "firstCurveSpace":
|
|
24403
|
+
viewModel.setFirstCurveSpace(formItem.spaceing);
|
|
24404
|
+
break;
|
|
24405
|
+
|
|
24390
24406
|
case "firstCurveWidth":
|
|
24391
24407
|
viewModel.setFirstCurveWidth(formItem.firstCurveWidth);
|
|
24392
24408
|
break;
|
|
@@ -24641,6 +24657,62 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24641
24657
|
/* STABLE */
|
|
24642
24658
|
|
|
24643
24659
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", null, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
24660
|
+
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, {
|
|
24661
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).firstCurveSpace
|
|
24662
|
+
}, {
|
|
24663
|
+
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_row, {
|
|
24664
|
+
style: {
|
|
24665
|
+
"display": "flex"
|
|
24666
|
+
}
|
|
24667
|
+
}, {
|
|
24668
|
+
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, {
|
|
24669
|
+
span: 16
|
|
24670
|
+
}, {
|
|
24671
|
+
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_slider, {
|
|
24672
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing,
|
|
24673
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing = $event),
|
|
24674
|
+
step: 10,
|
|
24675
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minSpaceing,
|
|
24676
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxSpaceing,
|
|
24677
|
+
onInput: _cache[6] || (_cache[6] = $event => paramsChanged('firstCurveSpace'))
|
|
24678
|
+
}, null, 8
|
|
24679
|
+
/* PROPS */
|
|
24680
|
+
, ["modelValue", "min", "max"])]),
|
|
24681
|
+
_: 1
|
|
24682
|
+
/* STABLE */
|
|
24683
|
+
|
|
24684
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
24685
|
+
span: 8
|
|
24686
|
+
}, {
|
|
24687
|
+
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_input_number, {
|
|
24688
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing,
|
|
24689
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing = $event),
|
|
24690
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minSpaceing,
|
|
24691
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxSpaceing,
|
|
24692
|
+
step: 10,
|
|
24693
|
+
onInput: _cache[8] || (_cache[8] = $event => paramsChanged('firstCurveSpace')),
|
|
24694
|
+
"controls-position": "right"
|
|
24695
|
+
}, null, 8
|
|
24696
|
+
/* PROPS */
|
|
24697
|
+
, ["modelValue", "min", "max"])]),
|
|
24698
|
+
_: 1
|
|
24699
|
+
/* STABLE */
|
|
24700
|
+
|
|
24701
|
+
})]),
|
|
24702
|
+
_: 1
|
|
24703
|
+
/* STABLE */
|
|
24704
|
+
|
|
24705
|
+
})]),
|
|
24706
|
+
_: 1
|
|
24707
|
+
/* STABLE */
|
|
24708
|
+
|
|
24709
|
+
}, 8
|
|
24710
|
+
/* PROPS */
|
|
24711
|
+
, ["label"])]),
|
|
24712
|
+
_: 1
|
|
24713
|
+
/* STABLE */
|
|
24714
|
+
|
|
24715
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
24644
24716
|
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, {
|
|
24645
24717
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).firstCurveWidth
|
|
24646
24718
|
}, {
|
|
@@ -24654,11 +24726,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24654
24726
|
}, {
|
|
24655
24727
|
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_slider, {
|
|
24656
24728
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
24657
|
-
"onUpdate:modelValue": _cache[
|
|
24729
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
24658
24730
|
step: 0.1,
|
|
24659
24731
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
24660
24732
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
24661
|
-
onInput: _cache[
|
|
24733
|
+
onInput: _cache[10] || (_cache[10] = $event => paramsChanged('firstCurveWidth'))
|
|
24662
24734
|
}, null, 8
|
|
24663
24735
|
/* PROPS */
|
|
24664
24736
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -24670,11 +24742,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24670
24742
|
}, {
|
|
24671
24743
|
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_input_number, {
|
|
24672
24744
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
24673
|
-
"onUpdate:modelValue": _cache[
|
|
24745
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
24674
24746
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
24675
24747
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
24676
24748
|
step: 0.1,
|
|
24677
|
-
onInput: _cache[
|
|
24749
|
+
onInput: _cache[12] || (_cache[12] = $event => paramsChanged('firstCurveWidth')),
|
|
24678
24750
|
"controls-position": "right"
|
|
24679
24751
|
}, null, 8
|
|
24680
24752
|
/* PROPS */
|
|
@@ -24702,8 +24774,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24702
24774
|
}, {
|
|
24703
24775
|
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_color_picker, {
|
|
24704
24776
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveColor,
|
|
24705
|
-
"onUpdate:modelValue": _cache[
|
|
24706
|
-
onChange: _cache[
|
|
24777
|
+
"onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveColor = $event),
|
|
24778
|
+
onChange: _cache[14] || (_cache[14] = $event => paramsChanged('firstCurveColor'))
|
|
24707
24779
|
}, null, 8
|
|
24708
24780
|
/* PROPS */
|
|
24709
24781
|
, ["modelValue"])]),
|
|
@@ -24724,8 +24796,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24724
24796
|
}, {
|
|
24725
24797
|
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_switch, {
|
|
24726
24798
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurve,
|
|
24727
|
-
"onUpdate:modelValue": _cache[
|
|
24728
|
-
onChange: _cache[
|
|
24799
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurve = $event),
|
|
24800
|
+
onChange: _cache[16] || (_cache[16] = $event => paramsChanged('rememberCurve'))
|
|
24729
24801
|
}, null, 8
|
|
24730
24802
|
/* PROPS */
|
|
24731
24803
|
, ["modelValue"])]),
|
|
@@ -24752,11 +24824,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24752
24824
|
}, {
|
|
24753
24825
|
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_slider, {
|
|
24754
24826
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
24755
|
-
"onUpdate:modelValue": _cache[
|
|
24827
|
+
"onUpdate:modelValue": _cache[17] || (_cache[17] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
24756
24828
|
step: 0.1,
|
|
24757
24829
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
24758
24830
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
24759
|
-
onInput: _cache[
|
|
24831
|
+
onInput: _cache[18] || (_cache[18] = $event => paramsChanged('rememberCurveWidth'))
|
|
24760
24832
|
}, null, 8
|
|
24761
24833
|
/* PROPS */
|
|
24762
24834
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -24768,11 +24840,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24768
24840
|
}, {
|
|
24769
24841
|
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_input_number, {
|
|
24770
24842
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
24771
|
-
"onUpdate:modelValue": _cache[
|
|
24843
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
24772
24844
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
24773
24845
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
24774
24846
|
step: 0.1,
|
|
24775
|
-
onInput: _cache[
|
|
24847
|
+
onInput: _cache[20] || (_cache[20] = $event => paramsChanged('rememberCurveWidth')),
|
|
24776
24848
|
"controls-position": "right"
|
|
24777
24849
|
}, null, 8
|
|
24778
24850
|
/* PROPS */
|
|
@@ -24800,8 +24872,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24800
24872
|
}, {
|
|
24801
24873
|
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_color_picker, {
|
|
24802
24874
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveColor,
|
|
24803
|
-
"onUpdate:modelValue": _cache[
|
|
24804
|
-
onChange: _cache[
|
|
24875
|
+
"onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveColor = $event),
|
|
24876
|
+
onChange: _cache[22] || (_cache[22] = $event => paramsChanged('rememberCurveColor'))
|
|
24805
24877
|
}, null, 8
|
|
24806
24878
|
/* PROPS */
|
|
24807
24879
|
, ["modelValue"])]),
|
|
@@ -24822,8 +24894,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24822
24894
|
}, {
|
|
24823
24895
|
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_switch, {
|
|
24824
24896
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurve,
|
|
24825
|
-
"onUpdate:modelValue": _cache[
|
|
24826
|
-
onChange: _cache[
|
|
24897
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurve = $event),
|
|
24898
|
+
onChange: _cache[24] || (_cache[24] = $event => paramsChanged('intervalCurve'))
|
|
24827
24899
|
}, null, 8
|
|
24828
24900
|
/* PROPS */
|
|
24829
24901
|
, ["modelValue"])]),
|
|
@@ -24850,11 +24922,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24850
24922
|
}, {
|
|
24851
24923
|
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_slider, {
|
|
24852
24924
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
24853
|
-
"onUpdate:modelValue": _cache[
|
|
24925
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
24854
24926
|
step: 0.1,
|
|
24855
24927
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
24856
24928
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
24857
|
-
onInput: _cache[
|
|
24929
|
+
onInput: _cache[26] || (_cache[26] = $event => paramsChanged('intervalCurveWidth'))
|
|
24858
24930
|
}, null, 8
|
|
24859
24931
|
/* PROPS */
|
|
24860
24932
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -24866,11 +24938,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24866
24938
|
}, {
|
|
24867
24939
|
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_input_number, {
|
|
24868
24940
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
24869
|
-
"onUpdate:modelValue": _cache[
|
|
24941
|
+
"onUpdate:modelValue": _cache[27] || (_cache[27] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
24870
24942
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
24871
24943
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
24872
24944
|
step: 0.1,
|
|
24873
|
-
onInput: _cache[
|
|
24945
|
+
onInput: _cache[28] || (_cache[28] = $event => paramsChanged('intervalCurveWidth')),
|
|
24874
24946
|
"controls-position": "right"
|
|
24875
24947
|
}, null, 8
|
|
24876
24948
|
/* PROPS */
|
|
@@ -24898,8 +24970,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24898
24970
|
}, {
|
|
24899
24971
|
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_color_picker, {
|
|
24900
24972
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveColor,
|
|
24901
|
-
"onUpdate:modelValue": _cache[
|
|
24902
|
-
onChange: _cache[
|
|
24973
|
+
"onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveColor = $event),
|
|
24974
|
+
onChange: _cache[30] || (_cache[30] = $event => paramsChanged('intervalCurveColor'))
|
|
24903
24975
|
}, null, 8
|
|
24904
24976
|
/* PROPS */
|
|
24905
24977
|
, ["modelValue"])]),
|
|
@@ -24920,8 +24992,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24920
24992
|
}, {
|
|
24921
24993
|
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_switch, {
|
|
24922
24994
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurve,
|
|
24923
|
-
"onUpdate:modelValue": _cache[
|
|
24924
|
-
onChange: _cache[
|
|
24995
|
+
"onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurve = $event),
|
|
24996
|
+
onChange: _cache[32] || (_cache[32] = $event => paramsChanged('extraCurve'))
|
|
24925
24997
|
}, null, 8
|
|
24926
24998
|
/* PROPS */
|
|
24927
24999
|
, ["modelValue"])]),
|
|
@@ -24948,11 +25020,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24948
25020
|
}, {
|
|
24949
25021
|
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_slider, {
|
|
24950
25022
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
24951
|
-
"onUpdate:modelValue": _cache[
|
|
25023
|
+
"onUpdate:modelValue": _cache[33] || (_cache[33] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
24952
25024
|
step: 0.1,
|
|
24953
25025
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
24954
25026
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
24955
|
-
onInput: _cache[
|
|
25027
|
+
onInput: _cache[34] || (_cache[34] = $event => paramsChanged('extraCurveWidth'))
|
|
24956
25028
|
}, null, 8
|
|
24957
25029
|
/* PROPS */
|
|
24958
25030
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -24964,11 +25036,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24964
25036
|
}, {
|
|
24965
25037
|
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_input_number, {
|
|
24966
25038
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
24967
|
-
"onUpdate:modelValue": _cache[
|
|
25039
|
+
"onUpdate:modelValue": _cache[35] || (_cache[35] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
24968
25040
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
24969
25041
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
24970
25042
|
step: 0.1,
|
|
24971
|
-
onInput: _cache[
|
|
25043
|
+
onInput: _cache[36] || (_cache[36] = $event => paramsChanged('extraCurveWidth')),
|
|
24972
25044
|
"controls-position": "right"
|
|
24973
25045
|
}, null, 8
|
|
24974
25046
|
/* PROPS */
|
|
@@ -24996,8 +25068,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24996
25068
|
}, {
|
|
24997
25069
|
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_color_picker, {
|
|
24998
25070
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveColor,
|
|
24999
|
-
"onUpdate:modelValue": _cache[
|
|
25000
|
-
onChange: _cache[
|
|
25071
|
+
"onUpdate:modelValue": _cache[37] || (_cache[37] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveColor = $event),
|
|
25072
|
+
onChange: _cache[38] || (_cache[38] = $event => paramsChanged('extraCurveColor'))
|
|
25001
25073
|
}, null, 8
|
|
25002
25074
|
/* PROPS */
|
|
25003
25075
|
, ["modelValue"])]),
|
|
@@ -25033,7 +25105,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25033
25105
|
}, {
|
|
25034
25106
|
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_select, {
|
|
25035
25107
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle,
|
|
25036
|
-
"onUpdate:modelValue": _cache[
|
|
25108
|
+
"onUpdate:modelValue": _cache[39] || (_cache[39] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle = $event),
|
|
25037
25109
|
onChange: onChangeFillStyle
|
|
25038
25110
|
}, {
|
|
25039
25111
|
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_option, {
|
|
@@ -25076,11 +25148,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25076
25148
|
}, {
|
|
25077
25149
|
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_slider, {
|
|
25078
25150
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha,
|
|
25079
|
-
"onUpdate:modelValue": _cache[
|
|
25151
|
+
"onUpdate:modelValue": _cache[40] || (_cache[40] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha = $event),
|
|
25080
25152
|
min: 0,
|
|
25081
25153
|
max: 1,
|
|
25082
25154
|
step: 0.01,
|
|
25083
|
-
onInput: _cache[
|
|
25155
|
+
onInput: _cache[41] || (_cache[41] = $event => paramsChanged('alpha'))
|
|
25084
25156
|
}, null, 8
|
|
25085
25157
|
/* PROPS */
|
|
25086
25158
|
, ["modelValue", "step"])]),
|
|
@@ -25092,12 +25164,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25092
25164
|
}, {
|
|
25093
25165
|
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_input_number, {
|
|
25094
25166
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha,
|
|
25095
|
-
"onUpdate:modelValue": _cache[
|
|
25167
|
+
"onUpdate:modelValue": _cache[42] || (_cache[42] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha = $event),
|
|
25096
25168
|
min: 0,
|
|
25097
25169
|
max: 1,
|
|
25098
25170
|
step: 0.01,
|
|
25099
25171
|
"controls-position": "right",
|
|
25100
|
-
onInput: _cache[
|
|
25172
|
+
onInput: _cache[43] || (_cache[43] = $event => paramsChanged('alpha'))
|
|
25101
25173
|
}, null, 8
|
|
25102
25174
|
/* PROPS */
|
|
25103
25175
|
, ["modelValue", "step"])]),
|
|
@@ -25132,11 +25204,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25132
25204
|
}, {
|
|
25133
25205
|
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_slider, {
|
|
25134
25206
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
25135
|
-
"onUpdate:modelValue": _cache[
|
|
25207
|
+
"onUpdate:modelValue": _cache[44] || (_cache[44] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight = $event),
|
|
25136
25208
|
min: 0,
|
|
25137
25209
|
step: 100,
|
|
25138
25210
|
max: 8000,
|
|
25139
|
-
onInput: _cache[
|
|
25211
|
+
onInput: _cache[45] || (_cache[45] = $event => paramsChanged('minHeight'))
|
|
25140
25212
|
}, null, 8
|
|
25141
25213
|
/* PROPS */
|
|
25142
25214
|
, ["modelValue"])]),
|
|
@@ -25148,12 +25220,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25148
25220
|
}, {
|
|
25149
25221
|
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_input_number, {
|
|
25150
25222
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
25151
|
-
"onUpdate:modelValue": _cache[
|
|
25223
|
+
"onUpdate:modelValue": _cache[46] || (_cache[46] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight = $event),
|
|
25152
25224
|
min: 0,
|
|
25153
25225
|
step: 100,
|
|
25154
25226
|
max: 8000,
|
|
25155
25227
|
"controls-position": "right",
|
|
25156
|
-
onInput: _cache[
|
|
25228
|
+
onInput: _cache[47] || (_cache[47] = $event => paramsChanged('minHeight'))
|
|
25157
25229
|
}, null, 8
|
|
25158
25230
|
/* PROPS */
|
|
25159
25231
|
, ["modelValue"])]),
|
|
@@ -25188,11 +25260,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25188
25260
|
}, {
|
|
25189
25261
|
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_slider, {
|
|
25190
25262
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
25191
|
-
"onUpdate:modelValue": _cache[
|
|
25263
|
+
"onUpdate:modelValue": _cache[48] || (_cache[48] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight = $event),
|
|
25192
25264
|
min: 0,
|
|
25193
25265
|
step: 100,
|
|
25194
25266
|
max: 8000,
|
|
25195
|
-
onInput: _cache[
|
|
25267
|
+
onInput: _cache[49] || (_cache[49] = $event => paramsChanged('maxHeight'))
|
|
25196
25268
|
}, null, 8
|
|
25197
25269
|
/* PROPS */
|
|
25198
25270
|
, ["modelValue"])]),
|
|
@@ -25204,12 +25276,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25204
25276
|
}, {
|
|
25205
25277
|
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_input_number, {
|
|
25206
25278
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
25207
|
-
"onUpdate:modelValue": _cache[
|
|
25279
|
+
"onUpdate:modelValue": _cache[50] || (_cache[50] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight = $event),
|
|
25208
25280
|
min: 0,
|
|
25209
25281
|
step: 100,
|
|
25210
25282
|
max: 8000,
|
|
25211
25283
|
"controls-position": "right",
|
|
25212
|
-
onInput: _cache[
|
|
25284
|
+
onInput: _cache[51] || (_cache[51] = $event => paramsChanged('maxHeight'))
|
|
25213
25285
|
}, null, 8
|
|
25214
25286
|
/* PROPS */
|
|
25215
25287
|
, ["modelValue"])]),
|
|
@@ -25274,7 +25346,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25274
25346
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight,
|
|
25275
25347
|
"onUpdate:modelValue": $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight = $event,
|
|
25276
25348
|
disabled: true,
|
|
25277
|
-
onInput: _cache[
|
|
25349
|
+
onInput: _cache[52] || (_cache[52] = $event => paramsChanged('colorTableHeight')),
|
|
25278
25350
|
"controls-position": "right"
|
|
25279
25351
|
}, null, 8
|
|
25280
25352
|
/* PROPS */
|
|
@@ -25284,7 +25356,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25284
25356
|
"onUpdate:modelValue": $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight = $event,
|
|
25285
25357
|
disabled: true,
|
|
25286
25358
|
step: 1,
|
|
25287
|
-
onInput: _cache[
|
|
25359
|
+
onInput: _cache[53] || (_cache[53] = $event => paramsChanged('colorTableHeight')),
|
|
25288
25360
|
"controls-position": "right"
|
|
25289
25361
|
}, null, 8
|
|
25290
25362
|
/* PROPS */
|
|
@@ -25297,7 +25369,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25297
25369
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight,
|
|
25298
25370
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index + 1].colorTableHeight,
|
|
25299
25371
|
step: 1,
|
|
25300
|
-
onInput: _cache[
|
|
25372
|
+
onInput: _cache[54] || (_cache[54] = $event => paramsChanged('colorTableHeight')),
|
|
25301
25373
|
"controls-position": "right"
|
|
25302
25374
|
}, null, 8
|
|
25303
25375
|
/* PROPS */
|
|
@@ -25307,7 +25379,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25307
25379
|
"onUpdate:modelValue": $event => item.colorTableHeight = $event,
|
|
25308
25380
|
step: 1,
|
|
25309
25381
|
disabled: true,
|
|
25310
|
-
onInput: _cache[
|
|
25382
|
+
onInput: _cache[55] || (_cache[55] = $event => paramsChanged('colorTableHeight')),
|
|
25311
25383
|
"controls-position": "right"
|
|
25312
25384
|
}, null, 8
|
|
25313
25385
|
/* PROPS */
|
|
@@ -25323,7 +25395,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25323
25395
|
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_color_picker, {
|
|
25324
25396
|
modelValue: item.colorTable,
|
|
25325
25397
|
"onUpdate:modelValue": $event => item.colorTable = $event,
|
|
25326
|
-
onChange: _cache[
|
|
25398
|
+
onChange: _cache[56] || (_cache[56] = $event => paramsChanged('colorTable'))
|
|
25327
25399
|
}, null, 8
|
|
25328
25400
|
/* PROPS */
|
|
25329
25401
|
, ["modelValue", "onUpdate:modelValue"])]),
|
|
@@ -25362,8 +25434,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25362
25434
|
|
|
25363
25435
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio_group, {
|
|
25364
25436
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorImage,
|
|
25365
|
-
"onUpdate:modelValue": _cache[
|
|
25366
|
-
onChange: _cache[
|
|
25437
|
+
"onUpdate:modelValue": _cache[57] || (_cache[57] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorImage = $event),
|
|
25438
|
+
onChange: _cache[58] || (_cache[58] = $event => paramsChanged('image'))
|
|
25367
25439
|
}, {
|
|
25368
25440
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.renderList)(colorImages, (item, index) => {
|
|
25369
25441
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
|
|
@@ -25408,7 +25480,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25408
25480
|
})) : (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).fillType === 2 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_tabs, {
|
|
25409
25481
|
key: 2,
|
|
25410
25482
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(activeName),
|
|
25411
|
-
"onUpdate:modelValue": _cache[
|
|
25483
|
+
"onUpdate:modelValue": _cache[117] || (_cache[117] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(activeName) ? activeName.value = $event : activeName = $event),
|
|
25412
25484
|
onTabChange: _ctx.handleChange
|
|
25413
25485
|
}, {
|
|
25414
25486
|
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_tab_pane, {
|
|
@@ -25425,8 +25497,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25425
25497
|
}, {
|
|
25426
25498
|
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_switch, {
|
|
25427
25499
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).elevationMarking,
|
|
25428
|
-
"onUpdate:modelValue": _cache[
|
|
25429
|
-
onChange: _cache[
|
|
25500
|
+
"onUpdate:modelValue": _cache[59] || (_cache[59] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).elevationMarking = $event),
|
|
25501
|
+
onChange: _cache[60] || (_cache[60] = $event => paramsChanged('elevationMarking'))
|
|
25430
25502
|
}, null, 8
|
|
25431
25503
|
/* PROPS */
|
|
25432
25504
|
, ["modelValue"])]),
|
|
@@ -25445,8 +25517,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25445
25517
|
}, {
|
|
25446
25518
|
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_switch, {
|
|
25447
25519
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurve,
|
|
25448
|
-
"onUpdate:modelValue": _cache[
|
|
25449
|
-
onChange: _cache[
|
|
25520
|
+
"onUpdate:modelValue": _cache[61] || (_cache[61] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurve = $event),
|
|
25521
|
+
onChange: _cache[62] || (_cache[62] = $event => paramsChanged('firstCurve'))
|
|
25450
25522
|
}, null, 8
|
|
25451
25523
|
/* PROPS */
|
|
25452
25524
|
, ["modelValue"])]),
|
|
@@ -25460,6 +25532,62 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25460
25532
|
/* STABLE */
|
|
25461
25533
|
|
|
25462
25534
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", null, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
25535
|
+
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, {
|
|
25536
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).firstCurveSpace
|
|
25537
|
+
}, {
|
|
25538
|
+
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_row, {
|
|
25539
|
+
style: {
|
|
25540
|
+
"display": "flex"
|
|
25541
|
+
}
|
|
25542
|
+
}, {
|
|
25543
|
+
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, {
|
|
25544
|
+
span: 16
|
|
25545
|
+
}, {
|
|
25546
|
+
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_slider, {
|
|
25547
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing,
|
|
25548
|
+
"onUpdate:modelValue": _cache[63] || (_cache[63] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing = $event),
|
|
25549
|
+
step: 10,
|
|
25550
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minSpaceing,
|
|
25551
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxSpaceing,
|
|
25552
|
+
onInput: _cache[64] || (_cache[64] = $event => paramsChanged('firstCurveSpace'))
|
|
25553
|
+
}, null, 8
|
|
25554
|
+
/* PROPS */
|
|
25555
|
+
, ["modelValue", "min", "max"])]),
|
|
25556
|
+
_: 1
|
|
25557
|
+
/* STABLE */
|
|
25558
|
+
|
|
25559
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
25560
|
+
span: 8
|
|
25561
|
+
}, {
|
|
25562
|
+
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_input_number, {
|
|
25563
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing,
|
|
25564
|
+
"onUpdate:modelValue": _cache[65] || (_cache[65] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing = $event),
|
|
25565
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minSpaceing,
|
|
25566
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxSpaceing,
|
|
25567
|
+
step: 10,
|
|
25568
|
+
onInput: _cache[66] || (_cache[66] = $event => paramsChanged('firstCurveSpace')),
|
|
25569
|
+
"controls-position": "right"
|
|
25570
|
+
}, null, 8
|
|
25571
|
+
/* PROPS */
|
|
25572
|
+
, ["modelValue", "min", "max"])]),
|
|
25573
|
+
_: 1
|
|
25574
|
+
/* STABLE */
|
|
25575
|
+
|
|
25576
|
+
})]),
|
|
25577
|
+
_: 1
|
|
25578
|
+
/* STABLE */
|
|
25579
|
+
|
|
25580
|
+
})]),
|
|
25581
|
+
_: 1
|
|
25582
|
+
/* STABLE */
|
|
25583
|
+
|
|
25584
|
+
}, 8
|
|
25585
|
+
/* PROPS */
|
|
25586
|
+
, ["label"])]),
|
|
25587
|
+
_: 1
|
|
25588
|
+
/* STABLE */
|
|
25589
|
+
|
|
25590
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
25463
25591
|
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, {
|
|
25464
25592
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).firstCurveWidth
|
|
25465
25593
|
}, {
|
|
@@ -25473,11 +25601,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25473
25601
|
}, {
|
|
25474
25602
|
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_slider, {
|
|
25475
25603
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
25476
|
-
"onUpdate:modelValue": _cache[
|
|
25604
|
+
"onUpdate:modelValue": _cache[67] || (_cache[67] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
25477
25605
|
step: 0.1,
|
|
25478
25606
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
25479
25607
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
25480
|
-
onInput: _cache[
|
|
25608
|
+
onInput: _cache[68] || (_cache[68] = $event => paramsChanged('firstCurveWidth'))
|
|
25481
25609
|
}, null, 8
|
|
25482
25610
|
/* PROPS */
|
|
25483
25611
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -25489,11 +25617,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25489
25617
|
}, {
|
|
25490
25618
|
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_input_number, {
|
|
25491
25619
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
25492
|
-
"onUpdate:modelValue": _cache[
|
|
25620
|
+
"onUpdate:modelValue": _cache[69] || (_cache[69] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
25493
25621
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
25494
25622
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
25495
25623
|
step: 0.1,
|
|
25496
|
-
onInput: _cache[
|
|
25624
|
+
onInput: _cache[70] || (_cache[70] = $event => paramsChanged('firstCurveWidth')),
|
|
25497
25625
|
"controls-position": "right"
|
|
25498
25626
|
}, null, 8
|
|
25499
25627
|
/* PROPS */
|
|
@@ -25521,8 +25649,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25521
25649
|
}, {
|
|
25522
25650
|
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_color_picker, {
|
|
25523
25651
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveColor,
|
|
25524
|
-
"onUpdate:modelValue": _cache[
|
|
25525
|
-
onChange: _cache[
|
|
25652
|
+
"onUpdate:modelValue": _cache[71] || (_cache[71] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveColor = $event),
|
|
25653
|
+
onChange: _cache[72] || (_cache[72] = $event => paramsChanged('firstCurveColor'))
|
|
25526
25654
|
}, null, 8
|
|
25527
25655
|
/* PROPS */
|
|
25528
25656
|
, ["modelValue"])]),
|
|
@@ -25543,8 +25671,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25543
25671
|
}, {
|
|
25544
25672
|
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_switch, {
|
|
25545
25673
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurve,
|
|
25546
|
-
"onUpdate:modelValue": _cache[
|
|
25547
|
-
onChange: _cache[
|
|
25674
|
+
"onUpdate:modelValue": _cache[73] || (_cache[73] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurve = $event),
|
|
25675
|
+
onChange: _cache[74] || (_cache[74] = $event => paramsChanged('rememberCurve'))
|
|
25548
25676
|
}, null, 8
|
|
25549
25677
|
/* PROPS */
|
|
25550
25678
|
, ["modelValue"])]),
|
|
@@ -25571,11 +25699,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25571
25699
|
}, {
|
|
25572
25700
|
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_slider, {
|
|
25573
25701
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
25574
|
-
"onUpdate:modelValue": _cache[
|
|
25702
|
+
"onUpdate:modelValue": _cache[75] || (_cache[75] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
25575
25703
|
step: 0.1,
|
|
25576
25704
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
25577
25705
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
25578
|
-
onInput: _cache[
|
|
25706
|
+
onInput: _cache[76] || (_cache[76] = $event => paramsChanged('rememberCurveWidth'))
|
|
25579
25707
|
}, null, 8
|
|
25580
25708
|
/* PROPS */
|
|
25581
25709
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -25587,11 +25715,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25587
25715
|
}, {
|
|
25588
25716
|
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_input_number, {
|
|
25589
25717
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
25590
|
-
"onUpdate:modelValue": _cache[
|
|
25718
|
+
"onUpdate:modelValue": _cache[77] || (_cache[77] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
25591
25719
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
25592
25720
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
25593
25721
|
step: 0.1,
|
|
25594
|
-
onInput: _cache[
|
|
25722
|
+
onInput: _cache[78] || (_cache[78] = $event => paramsChanged('rememberCurveWidth')),
|
|
25595
25723
|
"controls-position": "right"
|
|
25596
25724
|
}, null, 8
|
|
25597
25725
|
/* PROPS */
|
|
@@ -25619,8 +25747,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25619
25747
|
}, {
|
|
25620
25748
|
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_color_picker, {
|
|
25621
25749
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveColor,
|
|
25622
|
-
"onUpdate:modelValue": _cache[
|
|
25623
|
-
onChange: _cache[
|
|
25750
|
+
"onUpdate:modelValue": _cache[79] || (_cache[79] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveColor = $event),
|
|
25751
|
+
onChange: _cache[80] || (_cache[80] = $event => paramsChanged('rememberCurveColor'))
|
|
25624
25752
|
}, null, 8
|
|
25625
25753
|
/* PROPS */
|
|
25626
25754
|
, ["modelValue"])]),
|
|
@@ -25641,8 +25769,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25641
25769
|
}, {
|
|
25642
25770
|
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_switch, {
|
|
25643
25771
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurve,
|
|
25644
|
-
"onUpdate:modelValue": _cache[
|
|
25645
|
-
onChange: _cache[
|
|
25772
|
+
"onUpdate:modelValue": _cache[81] || (_cache[81] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurve = $event),
|
|
25773
|
+
onChange: _cache[82] || (_cache[82] = $event => paramsChanged('intervalCurve'))
|
|
25646
25774
|
}, null, 8
|
|
25647
25775
|
/* PROPS */
|
|
25648
25776
|
, ["modelValue"])]),
|
|
@@ -25669,11 +25797,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25669
25797
|
}, {
|
|
25670
25798
|
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_slider, {
|
|
25671
25799
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
25672
|
-
"onUpdate:modelValue": _cache[
|
|
25800
|
+
"onUpdate:modelValue": _cache[83] || (_cache[83] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
25673
25801
|
step: 0.1,
|
|
25674
25802
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
25675
25803
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
25676
|
-
onInput: _cache[
|
|
25804
|
+
onInput: _cache[84] || (_cache[84] = $event => paramsChanged('intervalCurveWidth'))
|
|
25677
25805
|
}, null, 8
|
|
25678
25806
|
/* PROPS */
|
|
25679
25807
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -25685,11 +25813,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25685
25813
|
}, {
|
|
25686
25814
|
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_input_number, {
|
|
25687
25815
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
25688
|
-
"onUpdate:modelValue": _cache[
|
|
25816
|
+
"onUpdate:modelValue": _cache[85] || (_cache[85] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
25689
25817
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
25690
25818
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
25691
25819
|
step: 0.1,
|
|
25692
|
-
onInput: _cache[
|
|
25820
|
+
onInput: _cache[86] || (_cache[86] = $event => paramsChanged('intervalCurveWidth')),
|
|
25693
25821
|
"controls-position": "right"
|
|
25694
25822
|
}, null, 8
|
|
25695
25823
|
/* PROPS */
|
|
@@ -25717,8 +25845,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25717
25845
|
}, {
|
|
25718
25846
|
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_color_picker, {
|
|
25719
25847
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveColor,
|
|
25720
|
-
"onUpdate:modelValue": _cache[
|
|
25721
|
-
onChange: _cache[
|
|
25848
|
+
"onUpdate:modelValue": _cache[87] || (_cache[87] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveColor = $event),
|
|
25849
|
+
onChange: _cache[88] || (_cache[88] = $event => paramsChanged('intervalCurveColor'))
|
|
25722
25850
|
}, null, 8
|
|
25723
25851
|
/* PROPS */
|
|
25724
25852
|
, ["modelValue"])]),
|
|
@@ -25739,8 +25867,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25739
25867
|
}, {
|
|
25740
25868
|
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_switch, {
|
|
25741
25869
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurve,
|
|
25742
|
-
"onUpdate:modelValue": _cache[
|
|
25743
|
-
onChange: _cache[
|
|
25870
|
+
"onUpdate:modelValue": _cache[89] || (_cache[89] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurve = $event),
|
|
25871
|
+
onChange: _cache[90] || (_cache[90] = $event => paramsChanged('extraCurve'))
|
|
25744
25872
|
}, null, 8
|
|
25745
25873
|
/* PROPS */
|
|
25746
25874
|
, ["modelValue"])]),
|
|
@@ -25767,11 +25895,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25767
25895
|
}, {
|
|
25768
25896
|
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_slider, {
|
|
25769
25897
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
25770
|
-
"onUpdate:modelValue": _cache[
|
|
25898
|
+
"onUpdate:modelValue": _cache[91] || (_cache[91] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
25771
25899
|
step: 0.1,
|
|
25772
25900
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
25773
25901
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
25774
|
-
onInput: _cache[
|
|
25902
|
+
onInput: _cache[92] || (_cache[92] = $event => paramsChanged('extraCurveWidth'))
|
|
25775
25903
|
}, null, 8
|
|
25776
25904
|
/* PROPS */
|
|
25777
25905
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -25783,11 +25911,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25783
25911
|
}, {
|
|
25784
25912
|
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_input_number, {
|
|
25785
25913
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
25786
|
-
"onUpdate:modelValue": _cache[
|
|
25914
|
+
"onUpdate:modelValue": _cache[93] || (_cache[93] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
25787
25915
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
25788
25916
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
25789
25917
|
step: 0.1,
|
|
25790
|
-
onInput: _cache[
|
|
25918
|
+
onInput: _cache[94] || (_cache[94] = $event => paramsChanged('extraCurveWidth')),
|
|
25791
25919
|
"controls-position": "right"
|
|
25792
25920
|
}, null, 8
|
|
25793
25921
|
/* PROPS */
|
|
@@ -25815,8 +25943,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25815
25943
|
}, {
|
|
25816
25944
|
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_color_picker, {
|
|
25817
25945
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveColor,
|
|
25818
|
-
"onUpdate:modelValue": _cache[
|
|
25819
|
-
onChange: _cache[
|
|
25946
|
+
"onUpdate:modelValue": _cache[95] || (_cache[95] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveColor = $event),
|
|
25947
|
+
onChange: _cache[96] || (_cache[96] = $event => paramsChanged('extraCurveColor'))
|
|
25820
25948
|
}, null, 8
|
|
25821
25949
|
/* PROPS */
|
|
25822
25950
|
, ["modelValue"])]),
|
|
@@ -25861,7 +25989,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25861
25989
|
}, {
|
|
25862
25990
|
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_select, {
|
|
25863
25991
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle,
|
|
25864
|
-
"onUpdate:modelValue": _cache[
|
|
25992
|
+
"onUpdate:modelValue": _cache[97] || (_cache[97] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle = $event),
|
|
25865
25993
|
onChange: onChangeFillStyle
|
|
25866
25994
|
}, {
|
|
25867
25995
|
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_option, {
|
|
@@ -25904,11 +26032,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25904
26032
|
}, {
|
|
25905
26033
|
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_slider, {
|
|
25906
26034
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha,
|
|
25907
|
-
"onUpdate:modelValue": _cache[
|
|
26035
|
+
"onUpdate:modelValue": _cache[98] || (_cache[98] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha = $event),
|
|
25908
26036
|
min: 0,
|
|
25909
26037
|
max: 1,
|
|
25910
26038
|
step: 0.01,
|
|
25911
|
-
onInput: _cache[
|
|
26039
|
+
onInput: _cache[99] || (_cache[99] = $event => paramsChanged('alpha'))
|
|
25912
26040
|
}, null, 8
|
|
25913
26041
|
/* PROPS */
|
|
25914
26042
|
, ["modelValue", "step"])]),
|
|
@@ -25920,12 +26048,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25920
26048
|
}, {
|
|
25921
26049
|
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_input_number, {
|
|
25922
26050
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha,
|
|
25923
|
-
"onUpdate:modelValue": _cache[
|
|
26051
|
+
"onUpdate:modelValue": _cache[100] || (_cache[100] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha = $event),
|
|
25924
26052
|
min: 0,
|
|
25925
26053
|
max: 1,
|
|
25926
26054
|
step: 0.01,
|
|
25927
26055
|
"controls-position": "right",
|
|
25928
|
-
onInput: _cache[
|
|
26056
|
+
onInput: _cache[101] || (_cache[101] = $event => paramsChanged('alpha'))
|
|
25929
26057
|
}, null, 8
|
|
25930
26058
|
/* PROPS */
|
|
25931
26059
|
, ["modelValue", "step"])]),
|
|
@@ -25960,11 +26088,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25960
26088
|
}, {
|
|
25961
26089
|
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_slider, {
|
|
25962
26090
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
25963
|
-
"onUpdate:modelValue": _cache[
|
|
26091
|
+
"onUpdate:modelValue": _cache[102] || (_cache[102] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight = $event),
|
|
25964
26092
|
min: 0,
|
|
25965
26093
|
step: 100,
|
|
25966
26094
|
max: 8000,
|
|
25967
|
-
onInput: _cache[
|
|
26095
|
+
onInput: _cache[103] || (_cache[103] = $event => paramsChanged('minHeight'))
|
|
25968
26096
|
}, null, 8
|
|
25969
26097
|
/* PROPS */
|
|
25970
26098
|
, ["modelValue"])]),
|
|
@@ -25976,12 +26104,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25976
26104
|
}, {
|
|
25977
26105
|
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_input_number, {
|
|
25978
26106
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
25979
|
-
"onUpdate:modelValue": _cache[
|
|
26107
|
+
"onUpdate:modelValue": _cache[104] || (_cache[104] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight = $event),
|
|
25980
26108
|
min: 0,
|
|
25981
26109
|
step: 100,
|
|
25982
26110
|
max: 8000,
|
|
25983
26111
|
"controls-position": "right",
|
|
25984
|
-
onInput: _cache[
|
|
26112
|
+
onInput: _cache[105] || (_cache[105] = $event => paramsChanged('minHeight'))
|
|
25985
26113
|
}, null, 8
|
|
25986
26114
|
/* PROPS */
|
|
25987
26115
|
, ["modelValue"])]),
|
|
@@ -26016,11 +26144,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26016
26144
|
}, {
|
|
26017
26145
|
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_slider, {
|
|
26018
26146
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
26019
|
-
"onUpdate:modelValue": _cache[
|
|
26147
|
+
"onUpdate:modelValue": _cache[106] || (_cache[106] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight = $event),
|
|
26020
26148
|
min: 0,
|
|
26021
26149
|
step: 100,
|
|
26022
26150
|
max: 8000,
|
|
26023
|
-
onInput: _cache[
|
|
26151
|
+
onInput: _cache[107] || (_cache[107] = $event => paramsChanged('maxHeight'))
|
|
26024
26152
|
}, null, 8
|
|
26025
26153
|
/* PROPS */
|
|
26026
26154
|
, ["modelValue"])]),
|
|
@@ -26032,12 +26160,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26032
26160
|
}, {
|
|
26033
26161
|
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_input_number, {
|
|
26034
26162
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
26035
|
-
"onUpdate:modelValue": _cache[
|
|
26163
|
+
"onUpdate:modelValue": _cache[108] || (_cache[108] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight = $event),
|
|
26036
26164
|
min: 0,
|
|
26037
26165
|
step: 100,
|
|
26038
26166
|
max: 8000,
|
|
26039
26167
|
"controls-position": "right",
|
|
26040
|
-
onInput: _cache[
|
|
26168
|
+
onInput: _cache[109] || (_cache[109] = $event => paramsChanged('maxHeight'))
|
|
26041
26169
|
}, null, 8
|
|
26042
26170
|
/* PROPS */
|
|
26043
26171
|
, ["modelValue"])]),
|
|
@@ -26102,7 +26230,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26102
26230
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight,
|
|
26103
26231
|
"onUpdate:modelValue": $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight = $event,
|
|
26104
26232
|
disabled: true,
|
|
26105
|
-
onInput: _cache[
|
|
26233
|
+
onInput: _cache[110] || (_cache[110] = $event => paramsChanged('colorTableHeight')),
|
|
26106
26234
|
"controls-position": "right"
|
|
26107
26235
|
}, null, 8
|
|
26108
26236
|
/* PROPS */
|
|
@@ -26112,7 +26240,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26112
26240
|
"onUpdate:modelValue": $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight = $event,
|
|
26113
26241
|
disabled: true,
|
|
26114
26242
|
step: 1,
|
|
26115
|
-
onInput: _cache[
|
|
26243
|
+
onInput: _cache[111] || (_cache[111] = $event => paramsChanged('colorTableHeight')),
|
|
26116
26244
|
"controls-position": "right"
|
|
26117
26245
|
}, null, 8
|
|
26118
26246
|
/* PROPS */
|
|
@@ -26125,7 +26253,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26125
26253
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight,
|
|
26126
26254
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index + 1].colorTableHeight,
|
|
26127
26255
|
step: 1,
|
|
26128
|
-
onInput: _cache[
|
|
26256
|
+
onInput: _cache[112] || (_cache[112] = $event => paramsChanged('colorTableHeight')),
|
|
26129
26257
|
"controls-position": "right"
|
|
26130
26258
|
}, null, 8
|
|
26131
26259
|
/* PROPS */
|
|
@@ -26135,7 +26263,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26135
26263
|
"onUpdate:modelValue": $event => item.colorTableHeight = $event,
|
|
26136
26264
|
step: 1,
|
|
26137
26265
|
disabled: true,
|
|
26138
|
-
onInput: _cache[
|
|
26266
|
+
onInput: _cache[113] || (_cache[113] = $event => paramsChanged('colorTableHeight')),
|
|
26139
26267
|
"controls-position": "right"
|
|
26140
26268
|
}, null, 8
|
|
26141
26269
|
/* PROPS */
|
|
@@ -26151,7 +26279,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26151
26279
|
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_color_picker, {
|
|
26152
26280
|
modelValue: item.colorTable,
|
|
26153
26281
|
"onUpdate:modelValue": $event => item.colorTable = $event,
|
|
26154
|
-
onChange: _cache[
|
|
26282
|
+
onChange: _cache[114] || (_cache[114] = $event => paramsChanged('colorTable'))
|
|
26155
26283
|
}, null, 8
|
|
26156
26284
|
/* PROPS */
|
|
26157
26285
|
, ["modelValue", "onUpdate:modelValue"])]),
|
|
@@ -26190,8 +26318,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26190
26318
|
|
|
26191
26319
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio_group, {
|
|
26192
26320
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorImage,
|
|
26193
|
-
"onUpdate:modelValue": _cache[
|
|
26194
|
-
onChange: _cache[
|
|
26321
|
+
"onUpdate:modelValue": _cache[115] || (_cache[115] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorImage = $event),
|
|
26322
|
+
onChange: _cache[116] || (_cache[116] = $event => paramsChanged('image'))
|
|
26195
26323
|
}, {
|
|
26196
26324
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.renderList)(colorImages, (item, index) => {
|
|
26197
26325
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
|
|
@@ -26258,7 +26386,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26258
26386
|
}, 8
|
|
26259
26387
|
/* PROPS */
|
|
26260
26388
|
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", IsolineAnalysisvue_type_script_setup_true_lang_js_hoisted_17, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
26261
|
-
onClick: _cache[
|
|
26389
|
+
onClick: _cache[118] || (_cache[118] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
26262
26390
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startAnalysis,
|
|
26263
26391
|
type: "primary"
|
|
26264
26392
|
}, {
|
|
@@ -26271,7 +26399,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26271
26399
|
}, 8
|
|
26272
26400
|
/* PROPS */
|
|
26273
26401
|
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
26274
|
-
onClick: _cache[
|
|
26402
|
+
onClick: _cache[119] || (_cache[119] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => clearResult(), ["stop"])),
|
|
26275
26403
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clearResult
|
|
26276
26404
|
}, {
|
|
26277
26405
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clearResult), 1
|
|
@@ -37361,6 +37489,16 @@ class SceneSetViewModel {
|
|
|
37361
37489
|
|
|
37362
37490
|
setSurfaceTransparency(val) {
|
|
37363
37491
|
this._undergroundManager.transparent = Number(val);
|
|
37492
|
+
} // 设置地形夸张系数
|
|
37493
|
+
|
|
37494
|
+
|
|
37495
|
+
setExaggerationFactor(val) {
|
|
37496
|
+
this._viewer.scene.globe.terrainExaggeration = Number(val);
|
|
37497
|
+
} // 设置地形夸张基准高度
|
|
37498
|
+
|
|
37499
|
+
|
|
37500
|
+
setAltitudeHeight(val) {
|
|
37501
|
+
this._viewer.scene.globe.terrainExaggerationRelativeHeight = Number(val);
|
|
37364
37502
|
} // 销毁
|
|
37365
37503
|
|
|
37366
37504
|
|
|
@@ -37379,6 +37517,8 @@ class SceneSetViewModel {
|
|
|
37379
37517
|
this._removeChangedEvent = null;
|
|
37380
37518
|
this.setSkyBoxStyle("default");
|
|
37381
37519
|
this._viewer.scene.skyBox = this._defaultSkyBox;
|
|
37520
|
+
this._viewer.scene.globe.terrainExaggeration = 1.0;
|
|
37521
|
+
this._viewer.scene.globe.terrainExaggerationRelativeHeight = 0;
|
|
37382
37522
|
}
|
|
37383
37523
|
|
|
37384
37524
|
}
|
|
@@ -37465,6 +37605,13 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
37465
37605
|
fps: false,
|
|
37466
37606
|
deep: false,
|
|
37467
37607
|
skyBox: false
|
|
37608
|
+
}); // 地形参数
|
|
37609
|
+
|
|
37610
|
+
let terrainParams = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
37611
|
+
exaggerationFactor: 1.0,
|
|
37612
|
+
// 夸张系数
|
|
37613
|
+
altitudeHeight: 0 // 基准高度
|
|
37614
|
+
|
|
37468
37615
|
}); //其他参数
|
|
37469
37616
|
|
|
37470
37617
|
let otherParams = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
@@ -37605,6 +37752,14 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
37605
37752
|
viewModel.setSurfaceTransparency(otherParams.transparency);
|
|
37606
37753
|
break;
|
|
37607
37754
|
|
|
37755
|
+
case "exaggerationFactor":
|
|
37756
|
+
viewModel.setExaggerationFactor(terrainParams.exaggerationFactor);
|
|
37757
|
+
break;
|
|
37758
|
+
|
|
37759
|
+
case "altitudeHeight":
|
|
37760
|
+
viewModel.setAltitudeHeight(terrainParams.altitudeHeight);
|
|
37761
|
+
break;
|
|
37762
|
+
|
|
37608
37763
|
default:
|
|
37609
37764
|
break;
|
|
37610
37765
|
}
|
|
@@ -38629,6 +38784,126 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38629
38784
|
_: 1
|
|
38630
38785
|
/* STABLE */
|
|
38631
38786
|
|
|
38787
|
+
}, 8
|
|
38788
|
+
/* PROPS */
|
|
38789
|
+
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse_item, {
|
|
38790
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).terrainExaggeration,
|
|
38791
|
+
name: "terrain"
|
|
38792
|
+
}, {
|
|
38793
|
+
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, {
|
|
38794
|
+
"label-width": "90px",
|
|
38795
|
+
"label-position": "left"
|
|
38796
|
+
}, {
|
|
38797
|
+
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, {
|
|
38798
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).exaggerationFactor
|
|
38799
|
+
}, {
|
|
38800
|
+
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_row, {
|
|
38801
|
+
style: {
|
|
38802
|
+
"display": "flex"
|
|
38803
|
+
}
|
|
38804
|
+
}, {
|
|
38805
|
+
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, {
|
|
38806
|
+
span: 16
|
|
38807
|
+
}, {
|
|
38808
|
+
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_slider, {
|
|
38809
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).exaggerationFactor,
|
|
38810
|
+
"onUpdate:modelValue": _cache[70] || (_cache[70] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).exaggerationFactor = $event),
|
|
38811
|
+
step: 0.1,
|
|
38812
|
+
min: 0,
|
|
38813
|
+
max: 10,
|
|
38814
|
+
onInput: _cache[71] || (_cache[71] = $event => paramsChanged('exaggerationFactor'))
|
|
38815
|
+
}, null, 8
|
|
38816
|
+
/* PROPS */
|
|
38817
|
+
, ["modelValue", "step"])]),
|
|
38818
|
+
_: 1
|
|
38819
|
+
/* STABLE */
|
|
38820
|
+
|
|
38821
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
38822
|
+
span: 8
|
|
38823
|
+
}, {
|
|
38824
|
+
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_input_number, {
|
|
38825
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).exaggerationFactor,
|
|
38826
|
+
"onUpdate:modelValue": _cache[72] || (_cache[72] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).exaggerationFactor = $event),
|
|
38827
|
+
step: 0.1,
|
|
38828
|
+
min: 0,
|
|
38829
|
+
max: 10,
|
|
38830
|
+
"controls-position": "right",
|
|
38831
|
+
onInput: _cache[73] || (_cache[73] = $event => paramsChanged('exaggerationFactor'))
|
|
38832
|
+
}, null, 8
|
|
38833
|
+
/* PROPS */
|
|
38834
|
+
, ["modelValue", "step"])]),
|
|
38835
|
+
_: 1
|
|
38836
|
+
/* STABLE */
|
|
38837
|
+
|
|
38838
|
+
})]),
|
|
38839
|
+
_: 1
|
|
38840
|
+
/* STABLE */
|
|
38841
|
+
|
|
38842
|
+
})]),
|
|
38843
|
+
_: 1
|
|
38844
|
+
/* STABLE */
|
|
38845
|
+
|
|
38846
|
+
}, 8
|
|
38847
|
+
/* PROPS */
|
|
38848
|
+
, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
38849
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).altitudeHeight
|
|
38850
|
+
}, {
|
|
38851
|
+
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_row, {
|
|
38852
|
+
style: {
|
|
38853
|
+
"display": "flex"
|
|
38854
|
+
}
|
|
38855
|
+
}, {
|
|
38856
|
+
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, {
|
|
38857
|
+
span: 16
|
|
38858
|
+
}, {
|
|
38859
|
+
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_slider, {
|
|
38860
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).altitudeHeight,
|
|
38861
|
+
"onUpdate:modelValue": _cache[74] || (_cache[74] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).altitudeHeight = $event),
|
|
38862
|
+
step: 1,
|
|
38863
|
+
min: -1000,
|
|
38864
|
+
max: 1000,
|
|
38865
|
+
onInput: _cache[75] || (_cache[75] = $event => paramsChanged('altitudeHeight'))
|
|
38866
|
+
}, null, 8
|
|
38867
|
+
/* PROPS */
|
|
38868
|
+
, ["modelValue"])]),
|
|
38869
|
+
_: 1
|
|
38870
|
+
/* STABLE */
|
|
38871
|
+
|
|
38872
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
38873
|
+
span: 8
|
|
38874
|
+
}, {
|
|
38875
|
+
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_input_number, {
|
|
38876
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).altitudeHeight,
|
|
38877
|
+
"onUpdate:modelValue": _cache[76] || (_cache[76] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).altitudeHeight = $event),
|
|
38878
|
+
step: 1,
|
|
38879
|
+
min: -1000,
|
|
38880
|
+
max: 1000,
|
|
38881
|
+
"controls-position": "right",
|
|
38882
|
+
onInput: _cache[77] || (_cache[77] = $event => paramsChanged('altitudeHeight'))
|
|
38883
|
+
}, null, 8
|
|
38884
|
+
/* PROPS */
|
|
38885
|
+
, ["modelValue"])]),
|
|
38886
|
+
_: 1
|
|
38887
|
+
/* STABLE */
|
|
38888
|
+
|
|
38889
|
+
})]),
|
|
38890
|
+
_: 1
|
|
38891
|
+
/* STABLE */
|
|
38892
|
+
|
|
38893
|
+
})]),
|
|
38894
|
+
_: 1
|
|
38895
|
+
/* STABLE */
|
|
38896
|
+
|
|
38897
|
+
}, 8
|
|
38898
|
+
/* PROPS */
|
|
38899
|
+
, ["label"])]),
|
|
38900
|
+
_: 1
|
|
38901
|
+
/* STABLE */
|
|
38902
|
+
|
|
38903
|
+
})]),
|
|
38904
|
+
_: 1
|
|
38905
|
+
/* STABLE */
|
|
38906
|
+
|
|
38632
38907
|
}, 8
|
|
38633
38908
|
/* PROPS */
|
|
38634
38909
|
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse_item, {
|
|
@@ -38645,8 +38920,8 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38645
38920
|
}, {
|
|
38646
38921
|
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_group, {
|
|
38647
38922
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).viewMode,
|
|
38648
|
-
"onUpdate:modelValue": _cache[
|
|
38649
|
-
onChange: _cache[
|
|
38923
|
+
"onUpdate:modelValue": _cache[78] || (_cache[78] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).viewMode = $event),
|
|
38924
|
+
onChange: _cache[79] || (_cache[79] = $event => paramsChanged('viewMode'))
|
|
38650
38925
|
}, {
|
|
38651
38926
|
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_button, {
|
|
38652
38927
|
label: "3d"
|
|
@@ -38693,8 +38968,8 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38693
38968
|
}, {
|
|
38694
38969
|
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_group, {
|
|
38695
38970
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).grid,
|
|
38696
|
-
"onUpdate:modelValue": _cache[
|
|
38697
|
-
onChange: _cache[
|
|
38971
|
+
"onUpdate:modelValue": _cache[80] || (_cache[80] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).grid = $event),
|
|
38972
|
+
onChange: _cache[81] || (_cache[81] = $event => paramsChanged('grid'))
|
|
38698
38973
|
}, {
|
|
38699
38974
|
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_button, {
|
|
38700
38975
|
label: "no"
|
|
@@ -38740,9 +39015,9 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38740
39015
|
}, {
|
|
38741
39016
|
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_switch, {
|
|
38742
39017
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).underground,
|
|
38743
|
-
"onUpdate:modelValue": _cache[
|
|
39018
|
+
"onUpdate:modelValue": _cache[82] || (_cache[82] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).underground = $event),
|
|
38744
39019
|
"controls-position": "left",
|
|
38745
|
-
onChange: _cache[
|
|
39020
|
+
onChange: _cache[83] || (_cache[83] = $event => paramsChanged('underground'))
|
|
38746
39021
|
}, null, 8
|
|
38747
39022
|
/* PROPS */
|
|
38748
39023
|
, ["modelValue"])]),
|
|
@@ -38764,11 +39039,11 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38764
39039
|
}, {
|
|
38765
39040
|
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_slider, {
|
|
38766
39041
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).transparency,
|
|
38767
|
-
"onUpdate:modelValue": _cache[
|
|
39042
|
+
"onUpdate:modelValue": _cache[84] || (_cache[84] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).transparency = $event),
|
|
38768
39043
|
step: 0.01,
|
|
38769
39044
|
min: 0,
|
|
38770
39045
|
max: 1,
|
|
38771
|
-
onInput: _cache[
|
|
39046
|
+
onInput: _cache[85] || (_cache[85] = $event => paramsChanged('transparency'))
|
|
38772
39047
|
}, null, 8
|
|
38773
39048
|
/* PROPS */
|
|
38774
39049
|
, ["modelValue", "step"])]),
|
|
@@ -38780,12 +39055,12 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38780
39055
|
}, {
|
|
38781
39056
|
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_input_number, {
|
|
38782
39057
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).transparency,
|
|
38783
|
-
"onUpdate:modelValue": _cache[
|
|
39058
|
+
"onUpdate:modelValue": _cache[86] || (_cache[86] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).transparency = $event),
|
|
38784
39059
|
step: 0.01,
|
|
38785
39060
|
min: 0,
|
|
38786
39061
|
max: 1,
|
|
38787
39062
|
"controls-position": "right",
|
|
38788
|
-
onInput: _cache[
|
|
39063
|
+
onInput: _cache[87] || (_cache[87] = $event => paramsChanged('transparency'))
|
|
38789
39064
|
}, null, 8
|
|
38790
39065
|
/* PROPS */
|
|
38791
39066
|
, ["modelValue", "step"])]),
|
|
@@ -38827,23 +39102,23 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38827
39102
|
}));
|
|
38828
39103
|
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=script&setup=true&lang=js
|
|
38829
39104
|
|
|
38830
|
-
// EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=
|
|
38831
|
-
var
|
|
38832
|
-
;// CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=
|
|
39105
|
+
// EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=75fa85b8&lang=scss
|
|
39106
|
+
var SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss = __webpack_require__(632);
|
|
39107
|
+
;// CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=75fa85b8&lang=scss
|
|
38833
39108
|
|
|
38834
39109
|
|
|
38835
39110
|
|
|
38836
|
-
var
|
|
39111
|
+
var SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss_options = {};
|
|
38837
39112
|
|
|
38838
|
-
|
|
38839
|
-
|
|
39113
|
+
SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss_options.insert = "head";
|
|
39114
|
+
SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss_options.singleton = false;
|
|
38840
39115
|
|
|
38841
|
-
var
|
|
39116
|
+
var SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss_update = injectStylesIntoStyleTag_default()(SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss/* default */.Z, SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss_options);
|
|
38842
39117
|
|
|
38843
39118
|
|
|
38844
39119
|
|
|
38845
|
-
/* harmony default export */ var
|
|
38846
|
-
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=
|
|
39120
|
+
/* harmony default export */ var sceneset_SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss = (SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss/* default.locals */.Z.locals || {});
|
|
39121
|
+
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=75fa85b8&lang=scss
|
|
38847
39122
|
|
|
38848
39123
|
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue
|
|
38849
39124
|
|