@kq_npm/client3d_webgl_vue 4.2.8-beta → 4.3.0
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/comparemap/index.js +21 -2
- package/hawkeye/index.js +27 -12
- package/index.js +464 -148
- package/isolineanalysis/index.js +238 -110
- package/package.json +1 -1
- package/sceneset/index.js +164 -17
- package/sceneview/index.js +463 -147
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";
|
|
@@ -1144,17 +1144,21 @@ class DrawManager {
|
|
|
1144
1144
|
color: "#ff0000",
|
|
1145
1145
|
opacity: 1.0,
|
|
1146
1146
|
width: 2,
|
|
1147
|
-
dash: false
|
|
1147
|
+
dash: false,
|
|
1148
|
+
clampToGround: true //是否贴地
|
|
1149
|
+
|
|
1148
1150
|
},
|
|
1149
1151
|
polygon: {
|
|
1150
1152
|
color: "#0000ff",
|
|
1151
1153
|
opacity: 0.3,
|
|
1152
1154
|
outline: true,
|
|
1153
1155
|
outlineColor: "#ff0000",
|
|
1154
|
-
outlineWidth:
|
|
1156
|
+
outlineWidth: 2,
|
|
1155
1157
|
outlineDash: false,
|
|
1156
1158
|
fill: true,
|
|
1157
|
-
fillStyle: null
|
|
1159
|
+
fillStyle: null,
|
|
1160
|
+
clampToGround: true //是否贴地
|
|
1161
|
+
|
|
1158
1162
|
}
|
|
1159
1163
|
});
|
|
1160
1164
|
|
|
@@ -1538,6 +1542,7 @@ class DrawManager {
|
|
|
1538
1542
|
entity.polyline = {
|
|
1539
1543
|
positions: entity.polygon.hierarchy._value.positions,
|
|
1540
1544
|
width: style.polygon.outlineWidth,
|
|
1545
|
+
clampToGround: true,
|
|
1541
1546
|
material: style.polygon.outlineDash ? new Cesium.PolylineDashMaterialProperty({
|
|
1542
1547
|
color: style.polygon.outlineColor
|
|
1543
1548
|
}) : style.polygon.outlineColor
|
|
@@ -1559,7 +1564,7 @@ class DrawManager {
|
|
|
1559
1564
|
});
|
|
1560
1565
|
}
|
|
1561
1566
|
|
|
1562
|
-
callFun && callFun(that._viewer);
|
|
1567
|
+
callFun && callFun(that._viewer, geojsonData);
|
|
1563
1568
|
});
|
|
1564
1569
|
} //删除指定绘图分组的所有图形
|
|
1565
1570
|
|
|
@@ -1581,6 +1586,8 @@ class DrawManager {
|
|
|
1581
1586
|
if (index > -1) {
|
|
1582
1587
|
this._layerGroup.splice(index, 1);
|
|
1583
1588
|
}
|
|
1589
|
+
|
|
1590
|
+
if (idCustom === 'draw') this.clear();
|
|
1584
1591
|
}
|
|
1585
1592
|
|
|
1586
1593
|
getGeometry(idCustom) {
|
|
@@ -23910,7 +23917,7 @@ class IsolineAnalysisViewModel {
|
|
|
23910
23917
|
});
|
|
23911
23918
|
} else {
|
|
23912
23919
|
message({
|
|
23913
|
-
message: "
|
|
23920
|
+
message: "请添加地形后分析!",
|
|
23914
23921
|
type: "warning"
|
|
23915
23922
|
});
|
|
23916
23923
|
}
|
|
@@ -23943,6 +23950,12 @@ class IsolineAnalysisViewModel {
|
|
|
23943
23950
|
setFirstCurve(show) {
|
|
23944
23951
|
this._options.firstCurve.show = show;
|
|
23945
23952
|
if (this._elevation) this._elevation.firstCurve = this._options.firstCurve;
|
|
23953
|
+
} //设置首曲线间隔
|
|
23954
|
+
|
|
23955
|
+
|
|
23956
|
+
setFirstCurveSpace(spaceing) {
|
|
23957
|
+
this._options.spaceing = Number(spaceing);
|
|
23958
|
+
if (this._elevation) this._elevation.spaceing = this._options.spaceing;
|
|
23946
23959
|
} //设置首曲线宽度
|
|
23947
23960
|
|
|
23948
23961
|
|
|
@@ -24201,10 +24214,16 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24201
24214
|
// 高程标注
|
|
24202
24215
|
firstCurve: props.settingParams && props.settingParams.firstCurve !== undefined || true,
|
|
24203
24216
|
// 首曲线
|
|
24217
|
+
spaceing: props.settingParams && props.settingParams.spaceing || 500,
|
|
24218
|
+
// 首曲线间隔
|
|
24219
|
+
minSpaceing: props.settingParams && props.settingParams.minSpaceing || 10,
|
|
24220
|
+
// 首曲线间隔最小值
|
|
24221
|
+
maxSpaceing: props.settingParams && props.settingParams.maxSpaceing || 1000,
|
|
24222
|
+
// 首曲线间隔最大值
|
|
24204
24223
|
firstCurveWidth: props.settingParams && props.settingParams.firstCurveWidth || 2,
|
|
24205
24224
|
// 首曲线宽度
|
|
24206
24225
|
minFirstCurveWidth: props.settingParams && props.settingParams.minFirstCurveWidth || 0,
|
|
24207
|
-
//
|
|
24226
|
+
// 首曲线宽度最小值
|
|
24208
24227
|
maxFirstCurveWidth: props.settingParams && props.settingParams.maxFirstCurveWidth || 5,
|
|
24209
24228
|
// 首曲线宽度最大值
|
|
24210
24229
|
firstCurveColor: props.settingParams && props.settingParams.firstCurveColor || "#E6A23C",
|
|
@@ -24280,7 +24299,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24280
24299
|
var options = {
|
|
24281
24300
|
minHeight: formItem.minHeight,
|
|
24282
24301
|
maxHeight: formItem.maxHeight,
|
|
24283
|
-
spaceing:
|
|
24302
|
+
spaceing: formItem.spaceing,
|
|
24284
24303
|
filltype: formItem.fillType,
|
|
24285
24304
|
fillStyle: formItem.fillStyle,
|
|
24286
24305
|
colorTableValue: [0.0, 0.1, 0.2, 0.3, 0.4],
|
|
@@ -24387,6 +24406,10 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24387
24406
|
viewModel.setFirstCurve(formItem.firstCurve);
|
|
24388
24407
|
break;
|
|
24389
24408
|
|
|
24409
|
+
case "firstCurveSpace":
|
|
24410
|
+
viewModel.setFirstCurveSpace(formItem.spaceing);
|
|
24411
|
+
break;
|
|
24412
|
+
|
|
24390
24413
|
case "firstCurveWidth":
|
|
24391
24414
|
viewModel.setFirstCurveWidth(formItem.firstCurveWidth);
|
|
24392
24415
|
break;
|
|
@@ -24641,6 +24664,62 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24641
24664
|
/* STABLE */
|
|
24642
24665
|
|
|
24643
24666
|
}), (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, {
|
|
24667
|
+
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, {
|
|
24668
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).firstCurveSpace
|
|
24669
|
+
}, {
|
|
24670
|
+
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, {
|
|
24671
|
+
style: {
|
|
24672
|
+
"display": "flex"
|
|
24673
|
+
}
|
|
24674
|
+
}, {
|
|
24675
|
+
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, {
|
|
24676
|
+
span: 16
|
|
24677
|
+
}, {
|
|
24678
|
+
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, {
|
|
24679
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing,
|
|
24680
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing = $event),
|
|
24681
|
+
step: 10,
|
|
24682
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minSpaceing,
|
|
24683
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxSpaceing,
|
|
24684
|
+
onInput: _cache[6] || (_cache[6] = $event => paramsChanged('firstCurveSpace'))
|
|
24685
|
+
}, null, 8
|
|
24686
|
+
/* PROPS */
|
|
24687
|
+
, ["modelValue", "min", "max"])]),
|
|
24688
|
+
_: 1
|
|
24689
|
+
/* STABLE */
|
|
24690
|
+
|
|
24691
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
24692
|
+
span: 8
|
|
24693
|
+
}, {
|
|
24694
|
+
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, {
|
|
24695
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing,
|
|
24696
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing = $event),
|
|
24697
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minSpaceing,
|
|
24698
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxSpaceing,
|
|
24699
|
+
step: 10,
|
|
24700
|
+
onInput: _cache[8] || (_cache[8] = $event => paramsChanged('firstCurveSpace')),
|
|
24701
|
+
"controls-position": "right"
|
|
24702
|
+
}, null, 8
|
|
24703
|
+
/* PROPS */
|
|
24704
|
+
, ["modelValue", "min", "max"])]),
|
|
24705
|
+
_: 1
|
|
24706
|
+
/* STABLE */
|
|
24707
|
+
|
|
24708
|
+
})]),
|
|
24709
|
+
_: 1
|
|
24710
|
+
/* STABLE */
|
|
24711
|
+
|
|
24712
|
+
})]),
|
|
24713
|
+
_: 1
|
|
24714
|
+
/* STABLE */
|
|
24715
|
+
|
|
24716
|
+
}, 8
|
|
24717
|
+
/* PROPS */
|
|
24718
|
+
, ["label"])]),
|
|
24719
|
+
_: 1
|
|
24720
|
+
/* STABLE */
|
|
24721
|
+
|
|
24722
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
24644
24723
|
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
24724
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).firstCurveWidth
|
|
24646
24725
|
}, {
|
|
@@ -24654,11 +24733,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24654
24733
|
}, {
|
|
24655
24734
|
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
24735
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
24657
|
-
"onUpdate:modelValue": _cache[
|
|
24736
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
24658
24737
|
step: 0.1,
|
|
24659
24738
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
24660
24739
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
24661
|
-
onInput: _cache[
|
|
24740
|
+
onInput: _cache[10] || (_cache[10] = $event => paramsChanged('firstCurveWidth'))
|
|
24662
24741
|
}, null, 8
|
|
24663
24742
|
/* PROPS */
|
|
24664
24743
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -24670,11 +24749,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24670
24749
|
}, {
|
|
24671
24750
|
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
24751
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
24673
|
-
"onUpdate:modelValue": _cache[
|
|
24752
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
24674
24753
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
24675
24754
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
24676
24755
|
step: 0.1,
|
|
24677
|
-
onInput: _cache[
|
|
24756
|
+
onInput: _cache[12] || (_cache[12] = $event => paramsChanged('firstCurveWidth')),
|
|
24678
24757
|
"controls-position": "right"
|
|
24679
24758
|
}, null, 8
|
|
24680
24759
|
/* PROPS */
|
|
@@ -24702,8 +24781,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24702
24781
|
}, {
|
|
24703
24782
|
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
24783
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveColor,
|
|
24705
|
-
"onUpdate:modelValue": _cache[
|
|
24706
|
-
onChange: _cache[
|
|
24784
|
+
"onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveColor = $event),
|
|
24785
|
+
onChange: _cache[14] || (_cache[14] = $event => paramsChanged('firstCurveColor'))
|
|
24707
24786
|
}, null, 8
|
|
24708
24787
|
/* PROPS */
|
|
24709
24788
|
, ["modelValue"])]),
|
|
@@ -24724,8 +24803,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24724
24803
|
}, {
|
|
24725
24804
|
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
24805
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurve,
|
|
24727
|
-
"onUpdate:modelValue": _cache[
|
|
24728
|
-
onChange: _cache[
|
|
24806
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurve = $event),
|
|
24807
|
+
onChange: _cache[16] || (_cache[16] = $event => paramsChanged('rememberCurve'))
|
|
24729
24808
|
}, null, 8
|
|
24730
24809
|
/* PROPS */
|
|
24731
24810
|
, ["modelValue"])]),
|
|
@@ -24752,11 +24831,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24752
24831
|
}, {
|
|
24753
24832
|
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
24833
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
24755
|
-
"onUpdate:modelValue": _cache[
|
|
24834
|
+
"onUpdate:modelValue": _cache[17] || (_cache[17] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
24756
24835
|
step: 0.1,
|
|
24757
24836
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
24758
24837
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
24759
|
-
onInput: _cache[
|
|
24838
|
+
onInput: _cache[18] || (_cache[18] = $event => paramsChanged('rememberCurveWidth'))
|
|
24760
24839
|
}, null, 8
|
|
24761
24840
|
/* PROPS */
|
|
24762
24841
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -24768,11 +24847,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24768
24847
|
}, {
|
|
24769
24848
|
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
24849
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
24771
|
-
"onUpdate:modelValue": _cache[
|
|
24850
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
24772
24851
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
24773
24852
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
24774
24853
|
step: 0.1,
|
|
24775
|
-
onInput: _cache[
|
|
24854
|
+
onInput: _cache[20] || (_cache[20] = $event => paramsChanged('rememberCurveWidth')),
|
|
24776
24855
|
"controls-position": "right"
|
|
24777
24856
|
}, null, 8
|
|
24778
24857
|
/* PROPS */
|
|
@@ -24800,8 +24879,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24800
24879
|
}, {
|
|
24801
24880
|
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
24881
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveColor,
|
|
24803
|
-
"onUpdate:modelValue": _cache[
|
|
24804
|
-
onChange: _cache[
|
|
24882
|
+
"onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveColor = $event),
|
|
24883
|
+
onChange: _cache[22] || (_cache[22] = $event => paramsChanged('rememberCurveColor'))
|
|
24805
24884
|
}, null, 8
|
|
24806
24885
|
/* PROPS */
|
|
24807
24886
|
, ["modelValue"])]),
|
|
@@ -24822,8 +24901,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24822
24901
|
}, {
|
|
24823
24902
|
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
24903
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurve,
|
|
24825
|
-
"onUpdate:modelValue": _cache[
|
|
24826
|
-
onChange: _cache[
|
|
24904
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurve = $event),
|
|
24905
|
+
onChange: _cache[24] || (_cache[24] = $event => paramsChanged('intervalCurve'))
|
|
24827
24906
|
}, null, 8
|
|
24828
24907
|
/* PROPS */
|
|
24829
24908
|
, ["modelValue"])]),
|
|
@@ -24850,11 +24929,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24850
24929
|
}, {
|
|
24851
24930
|
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
24931
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
24853
|
-
"onUpdate:modelValue": _cache[
|
|
24932
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
24854
24933
|
step: 0.1,
|
|
24855
24934
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
24856
24935
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
24857
|
-
onInput: _cache[
|
|
24936
|
+
onInput: _cache[26] || (_cache[26] = $event => paramsChanged('intervalCurveWidth'))
|
|
24858
24937
|
}, null, 8
|
|
24859
24938
|
/* PROPS */
|
|
24860
24939
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -24866,11 +24945,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24866
24945
|
}, {
|
|
24867
24946
|
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
24947
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
24869
|
-
"onUpdate:modelValue": _cache[
|
|
24948
|
+
"onUpdate:modelValue": _cache[27] || (_cache[27] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
24870
24949
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
24871
24950
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
24872
24951
|
step: 0.1,
|
|
24873
|
-
onInput: _cache[
|
|
24952
|
+
onInput: _cache[28] || (_cache[28] = $event => paramsChanged('intervalCurveWidth')),
|
|
24874
24953
|
"controls-position": "right"
|
|
24875
24954
|
}, null, 8
|
|
24876
24955
|
/* PROPS */
|
|
@@ -24898,8 +24977,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24898
24977
|
}, {
|
|
24899
24978
|
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
24979
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveColor,
|
|
24901
|
-
"onUpdate:modelValue": _cache[
|
|
24902
|
-
onChange: _cache[
|
|
24980
|
+
"onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveColor = $event),
|
|
24981
|
+
onChange: _cache[30] || (_cache[30] = $event => paramsChanged('intervalCurveColor'))
|
|
24903
24982
|
}, null, 8
|
|
24904
24983
|
/* PROPS */
|
|
24905
24984
|
, ["modelValue"])]),
|
|
@@ -24920,8 +24999,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24920
24999
|
}, {
|
|
24921
25000
|
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
25001
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurve,
|
|
24923
|
-
"onUpdate:modelValue": _cache[
|
|
24924
|
-
onChange: _cache[
|
|
25002
|
+
"onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurve = $event),
|
|
25003
|
+
onChange: _cache[32] || (_cache[32] = $event => paramsChanged('extraCurve'))
|
|
24925
25004
|
}, null, 8
|
|
24926
25005
|
/* PROPS */
|
|
24927
25006
|
, ["modelValue"])]),
|
|
@@ -24948,11 +25027,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24948
25027
|
}, {
|
|
24949
25028
|
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
25029
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
24951
|
-
"onUpdate:modelValue": _cache[
|
|
25030
|
+
"onUpdate:modelValue": _cache[33] || (_cache[33] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
24952
25031
|
step: 0.1,
|
|
24953
25032
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
24954
25033
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
24955
|
-
onInput: _cache[
|
|
25034
|
+
onInput: _cache[34] || (_cache[34] = $event => paramsChanged('extraCurveWidth'))
|
|
24956
25035
|
}, null, 8
|
|
24957
25036
|
/* PROPS */
|
|
24958
25037
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -24964,11 +25043,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24964
25043
|
}, {
|
|
24965
25044
|
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
25045
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
24967
|
-
"onUpdate:modelValue": _cache[
|
|
25046
|
+
"onUpdate:modelValue": _cache[35] || (_cache[35] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
24968
25047
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
24969
25048
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
24970
25049
|
step: 0.1,
|
|
24971
|
-
onInput: _cache[
|
|
25050
|
+
onInput: _cache[36] || (_cache[36] = $event => paramsChanged('extraCurveWidth')),
|
|
24972
25051
|
"controls-position": "right"
|
|
24973
25052
|
}, null, 8
|
|
24974
25053
|
/* PROPS */
|
|
@@ -24996,8 +25075,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24996
25075
|
}, {
|
|
24997
25076
|
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
25077
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveColor,
|
|
24999
|
-
"onUpdate:modelValue": _cache[
|
|
25000
|
-
onChange: _cache[
|
|
25078
|
+
"onUpdate:modelValue": _cache[37] || (_cache[37] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveColor = $event),
|
|
25079
|
+
onChange: _cache[38] || (_cache[38] = $event => paramsChanged('extraCurveColor'))
|
|
25001
25080
|
}, null, 8
|
|
25002
25081
|
/* PROPS */
|
|
25003
25082
|
, ["modelValue"])]),
|
|
@@ -25033,7 +25112,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25033
25112
|
}, {
|
|
25034
25113
|
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
25114
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle,
|
|
25036
|
-
"onUpdate:modelValue": _cache[
|
|
25115
|
+
"onUpdate:modelValue": _cache[39] || (_cache[39] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle = $event),
|
|
25037
25116
|
onChange: onChangeFillStyle
|
|
25038
25117
|
}, {
|
|
25039
25118
|
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 +25155,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25076
25155
|
}, {
|
|
25077
25156
|
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
25157
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha,
|
|
25079
|
-
"onUpdate:modelValue": _cache[
|
|
25158
|
+
"onUpdate:modelValue": _cache[40] || (_cache[40] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha = $event),
|
|
25080
25159
|
min: 0,
|
|
25081
25160
|
max: 1,
|
|
25082
25161
|
step: 0.01,
|
|
25083
|
-
onInput: _cache[
|
|
25162
|
+
onInput: _cache[41] || (_cache[41] = $event => paramsChanged('alpha'))
|
|
25084
25163
|
}, null, 8
|
|
25085
25164
|
/* PROPS */
|
|
25086
25165
|
, ["modelValue", "step"])]),
|
|
@@ -25092,12 +25171,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25092
25171
|
}, {
|
|
25093
25172
|
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
25173
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha,
|
|
25095
|
-
"onUpdate:modelValue": _cache[
|
|
25174
|
+
"onUpdate:modelValue": _cache[42] || (_cache[42] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha = $event),
|
|
25096
25175
|
min: 0,
|
|
25097
25176
|
max: 1,
|
|
25098
25177
|
step: 0.01,
|
|
25099
25178
|
"controls-position": "right",
|
|
25100
|
-
onInput: _cache[
|
|
25179
|
+
onInput: _cache[43] || (_cache[43] = $event => paramsChanged('alpha'))
|
|
25101
25180
|
}, null, 8
|
|
25102
25181
|
/* PROPS */
|
|
25103
25182
|
, ["modelValue", "step"])]),
|
|
@@ -25132,11 +25211,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25132
25211
|
}, {
|
|
25133
25212
|
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
25213
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
25135
|
-
"onUpdate:modelValue": _cache[
|
|
25214
|
+
"onUpdate:modelValue": _cache[44] || (_cache[44] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight = $event),
|
|
25136
25215
|
min: 0,
|
|
25137
25216
|
step: 100,
|
|
25138
25217
|
max: 8000,
|
|
25139
|
-
onInput: _cache[
|
|
25218
|
+
onInput: _cache[45] || (_cache[45] = $event => paramsChanged('minHeight'))
|
|
25140
25219
|
}, null, 8
|
|
25141
25220
|
/* PROPS */
|
|
25142
25221
|
, ["modelValue"])]),
|
|
@@ -25148,12 +25227,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25148
25227
|
}, {
|
|
25149
25228
|
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
25229
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
25151
|
-
"onUpdate:modelValue": _cache[
|
|
25230
|
+
"onUpdate:modelValue": _cache[46] || (_cache[46] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight = $event),
|
|
25152
25231
|
min: 0,
|
|
25153
25232
|
step: 100,
|
|
25154
25233
|
max: 8000,
|
|
25155
25234
|
"controls-position": "right",
|
|
25156
|
-
onInput: _cache[
|
|
25235
|
+
onInput: _cache[47] || (_cache[47] = $event => paramsChanged('minHeight'))
|
|
25157
25236
|
}, null, 8
|
|
25158
25237
|
/* PROPS */
|
|
25159
25238
|
, ["modelValue"])]),
|
|
@@ -25188,11 +25267,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25188
25267
|
}, {
|
|
25189
25268
|
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
25269
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
25191
|
-
"onUpdate:modelValue": _cache[
|
|
25270
|
+
"onUpdate:modelValue": _cache[48] || (_cache[48] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight = $event),
|
|
25192
25271
|
min: 0,
|
|
25193
25272
|
step: 100,
|
|
25194
25273
|
max: 8000,
|
|
25195
|
-
onInput: _cache[
|
|
25274
|
+
onInput: _cache[49] || (_cache[49] = $event => paramsChanged('maxHeight'))
|
|
25196
25275
|
}, null, 8
|
|
25197
25276
|
/* PROPS */
|
|
25198
25277
|
, ["modelValue"])]),
|
|
@@ -25204,12 +25283,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25204
25283
|
}, {
|
|
25205
25284
|
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
25285
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
25207
|
-
"onUpdate:modelValue": _cache[
|
|
25286
|
+
"onUpdate:modelValue": _cache[50] || (_cache[50] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight = $event),
|
|
25208
25287
|
min: 0,
|
|
25209
25288
|
step: 100,
|
|
25210
25289
|
max: 8000,
|
|
25211
25290
|
"controls-position": "right",
|
|
25212
|
-
onInput: _cache[
|
|
25291
|
+
onInput: _cache[51] || (_cache[51] = $event => paramsChanged('maxHeight'))
|
|
25213
25292
|
}, null, 8
|
|
25214
25293
|
/* PROPS */
|
|
25215
25294
|
, ["modelValue"])]),
|
|
@@ -25274,7 +25353,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25274
25353
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight,
|
|
25275
25354
|
"onUpdate:modelValue": $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight = $event,
|
|
25276
25355
|
disabled: true,
|
|
25277
|
-
onInput: _cache[
|
|
25356
|
+
onInput: _cache[52] || (_cache[52] = $event => paramsChanged('colorTableHeight')),
|
|
25278
25357
|
"controls-position": "right"
|
|
25279
25358
|
}, null, 8
|
|
25280
25359
|
/* PROPS */
|
|
@@ -25284,7 +25363,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25284
25363
|
"onUpdate:modelValue": $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight = $event,
|
|
25285
25364
|
disabled: true,
|
|
25286
25365
|
step: 1,
|
|
25287
|
-
onInput: _cache[
|
|
25366
|
+
onInput: _cache[53] || (_cache[53] = $event => paramsChanged('colorTableHeight')),
|
|
25288
25367
|
"controls-position": "right"
|
|
25289
25368
|
}, null, 8
|
|
25290
25369
|
/* PROPS */
|
|
@@ -25297,7 +25376,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25297
25376
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight,
|
|
25298
25377
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index + 1].colorTableHeight,
|
|
25299
25378
|
step: 1,
|
|
25300
|
-
onInput: _cache[
|
|
25379
|
+
onInput: _cache[54] || (_cache[54] = $event => paramsChanged('colorTableHeight')),
|
|
25301
25380
|
"controls-position": "right"
|
|
25302
25381
|
}, null, 8
|
|
25303
25382
|
/* PROPS */
|
|
@@ -25307,7 +25386,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25307
25386
|
"onUpdate:modelValue": $event => item.colorTableHeight = $event,
|
|
25308
25387
|
step: 1,
|
|
25309
25388
|
disabled: true,
|
|
25310
|
-
onInput: _cache[
|
|
25389
|
+
onInput: _cache[55] || (_cache[55] = $event => paramsChanged('colorTableHeight')),
|
|
25311
25390
|
"controls-position": "right"
|
|
25312
25391
|
}, null, 8
|
|
25313
25392
|
/* PROPS */
|
|
@@ -25323,7 +25402,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25323
25402
|
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
25403
|
modelValue: item.colorTable,
|
|
25325
25404
|
"onUpdate:modelValue": $event => item.colorTable = $event,
|
|
25326
|
-
onChange: _cache[
|
|
25405
|
+
onChange: _cache[56] || (_cache[56] = $event => paramsChanged('colorTable'))
|
|
25327
25406
|
}, null, 8
|
|
25328
25407
|
/* PROPS */
|
|
25329
25408
|
, ["modelValue", "onUpdate:modelValue"])]),
|
|
@@ -25362,8 +25441,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25362
25441
|
|
|
25363
25442
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio_group, {
|
|
25364
25443
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorImage,
|
|
25365
|
-
"onUpdate:modelValue": _cache[
|
|
25366
|
-
onChange: _cache[
|
|
25444
|
+
"onUpdate:modelValue": _cache[57] || (_cache[57] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorImage = $event),
|
|
25445
|
+
onChange: _cache[58] || (_cache[58] = $event => paramsChanged('image'))
|
|
25367
25446
|
}, {
|
|
25368
25447
|
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
25448
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
|
|
@@ -25408,7 +25487,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25408
25487
|
})) : (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
25488
|
key: 2,
|
|
25410
25489
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(activeName),
|
|
25411
|
-
"onUpdate:modelValue": _cache[
|
|
25490
|
+
"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
25491
|
onTabChange: _ctx.handleChange
|
|
25413
25492
|
}, {
|
|
25414
25493
|
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 +25504,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25425
25504
|
}, {
|
|
25426
25505
|
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
25506
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).elevationMarking,
|
|
25428
|
-
"onUpdate:modelValue": _cache[
|
|
25429
|
-
onChange: _cache[
|
|
25507
|
+
"onUpdate:modelValue": _cache[59] || (_cache[59] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).elevationMarking = $event),
|
|
25508
|
+
onChange: _cache[60] || (_cache[60] = $event => paramsChanged('elevationMarking'))
|
|
25430
25509
|
}, null, 8
|
|
25431
25510
|
/* PROPS */
|
|
25432
25511
|
, ["modelValue"])]),
|
|
@@ -25445,8 +25524,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25445
25524
|
}, {
|
|
25446
25525
|
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
25526
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurve,
|
|
25448
|
-
"onUpdate:modelValue": _cache[
|
|
25449
|
-
onChange: _cache[
|
|
25527
|
+
"onUpdate:modelValue": _cache[61] || (_cache[61] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurve = $event),
|
|
25528
|
+
onChange: _cache[62] || (_cache[62] = $event => paramsChanged('firstCurve'))
|
|
25450
25529
|
}, null, 8
|
|
25451
25530
|
/* PROPS */
|
|
25452
25531
|
, ["modelValue"])]),
|
|
@@ -25460,6 +25539,62 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25460
25539
|
/* STABLE */
|
|
25461
25540
|
|
|
25462
25541
|
}), (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, {
|
|
25542
|
+
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, {
|
|
25543
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).firstCurveSpace
|
|
25544
|
+
}, {
|
|
25545
|
+
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, {
|
|
25546
|
+
style: {
|
|
25547
|
+
"display": "flex"
|
|
25548
|
+
}
|
|
25549
|
+
}, {
|
|
25550
|
+
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, {
|
|
25551
|
+
span: 16
|
|
25552
|
+
}, {
|
|
25553
|
+
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, {
|
|
25554
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing,
|
|
25555
|
+
"onUpdate:modelValue": _cache[63] || (_cache[63] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing = $event),
|
|
25556
|
+
step: 10,
|
|
25557
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minSpaceing,
|
|
25558
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxSpaceing,
|
|
25559
|
+
onInput: _cache[64] || (_cache[64] = $event => paramsChanged('firstCurveSpace'))
|
|
25560
|
+
}, null, 8
|
|
25561
|
+
/* PROPS */
|
|
25562
|
+
, ["modelValue", "min", "max"])]),
|
|
25563
|
+
_: 1
|
|
25564
|
+
/* STABLE */
|
|
25565
|
+
|
|
25566
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
25567
|
+
span: 8
|
|
25568
|
+
}, {
|
|
25569
|
+
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, {
|
|
25570
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing,
|
|
25571
|
+
"onUpdate:modelValue": _cache[65] || (_cache[65] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing = $event),
|
|
25572
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minSpaceing,
|
|
25573
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxSpaceing,
|
|
25574
|
+
step: 10,
|
|
25575
|
+
onInput: _cache[66] || (_cache[66] = $event => paramsChanged('firstCurveSpace')),
|
|
25576
|
+
"controls-position": "right"
|
|
25577
|
+
}, null, 8
|
|
25578
|
+
/* PROPS */
|
|
25579
|
+
, ["modelValue", "min", "max"])]),
|
|
25580
|
+
_: 1
|
|
25581
|
+
/* STABLE */
|
|
25582
|
+
|
|
25583
|
+
})]),
|
|
25584
|
+
_: 1
|
|
25585
|
+
/* STABLE */
|
|
25586
|
+
|
|
25587
|
+
})]),
|
|
25588
|
+
_: 1
|
|
25589
|
+
/* STABLE */
|
|
25590
|
+
|
|
25591
|
+
}, 8
|
|
25592
|
+
/* PROPS */
|
|
25593
|
+
, ["label"])]),
|
|
25594
|
+
_: 1
|
|
25595
|
+
/* STABLE */
|
|
25596
|
+
|
|
25597
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
25463
25598
|
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
25599
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).firstCurveWidth
|
|
25465
25600
|
}, {
|
|
@@ -25473,11 +25608,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25473
25608
|
}, {
|
|
25474
25609
|
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
25610
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
25476
|
-
"onUpdate:modelValue": _cache[
|
|
25611
|
+
"onUpdate:modelValue": _cache[67] || (_cache[67] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
25477
25612
|
step: 0.1,
|
|
25478
25613
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
25479
25614
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
25480
|
-
onInput: _cache[
|
|
25615
|
+
onInput: _cache[68] || (_cache[68] = $event => paramsChanged('firstCurveWidth'))
|
|
25481
25616
|
}, null, 8
|
|
25482
25617
|
/* PROPS */
|
|
25483
25618
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -25489,11 +25624,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25489
25624
|
}, {
|
|
25490
25625
|
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
25626
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
25492
|
-
"onUpdate:modelValue": _cache[
|
|
25627
|
+
"onUpdate:modelValue": _cache[69] || (_cache[69] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
25493
25628
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
25494
25629
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
25495
25630
|
step: 0.1,
|
|
25496
|
-
onInput: _cache[
|
|
25631
|
+
onInput: _cache[70] || (_cache[70] = $event => paramsChanged('firstCurveWidth')),
|
|
25497
25632
|
"controls-position": "right"
|
|
25498
25633
|
}, null, 8
|
|
25499
25634
|
/* PROPS */
|
|
@@ -25521,8 +25656,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25521
25656
|
}, {
|
|
25522
25657
|
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
25658
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveColor,
|
|
25524
|
-
"onUpdate:modelValue": _cache[
|
|
25525
|
-
onChange: _cache[
|
|
25659
|
+
"onUpdate:modelValue": _cache[71] || (_cache[71] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveColor = $event),
|
|
25660
|
+
onChange: _cache[72] || (_cache[72] = $event => paramsChanged('firstCurveColor'))
|
|
25526
25661
|
}, null, 8
|
|
25527
25662
|
/* PROPS */
|
|
25528
25663
|
, ["modelValue"])]),
|
|
@@ -25543,8 +25678,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25543
25678
|
}, {
|
|
25544
25679
|
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
25680
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurve,
|
|
25546
|
-
"onUpdate:modelValue": _cache[
|
|
25547
|
-
onChange: _cache[
|
|
25681
|
+
"onUpdate:modelValue": _cache[73] || (_cache[73] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurve = $event),
|
|
25682
|
+
onChange: _cache[74] || (_cache[74] = $event => paramsChanged('rememberCurve'))
|
|
25548
25683
|
}, null, 8
|
|
25549
25684
|
/* PROPS */
|
|
25550
25685
|
, ["modelValue"])]),
|
|
@@ -25571,11 +25706,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25571
25706
|
}, {
|
|
25572
25707
|
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
25708
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
25574
|
-
"onUpdate:modelValue": _cache[
|
|
25709
|
+
"onUpdate:modelValue": _cache[75] || (_cache[75] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
25575
25710
|
step: 0.1,
|
|
25576
25711
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
25577
25712
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
25578
|
-
onInput: _cache[
|
|
25713
|
+
onInput: _cache[76] || (_cache[76] = $event => paramsChanged('rememberCurveWidth'))
|
|
25579
25714
|
}, null, 8
|
|
25580
25715
|
/* PROPS */
|
|
25581
25716
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -25587,11 +25722,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25587
25722
|
}, {
|
|
25588
25723
|
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
25724
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
25590
|
-
"onUpdate:modelValue": _cache[
|
|
25725
|
+
"onUpdate:modelValue": _cache[77] || (_cache[77] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
25591
25726
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
25592
25727
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
25593
25728
|
step: 0.1,
|
|
25594
|
-
onInput: _cache[
|
|
25729
|
+
onInput: _cache[78] || (_cache[78] = $event => paramsChanged('rememberCurveWidth')),
|
|
25595
25730
|
"controls-position": "right"
|
|
25596
25731
|
}, null, 8
|
|
25597
25732
|
/* PROPS */
|
|
@@ -25619,8 +25754,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25619
25754
|
}, {
|
|
25620
25755
|
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
25756
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveColor,
|
|
25622
|
-
"onUpdate:modelValue": _cache[
|
|
25623
|
-
onChange: _cache[
|
|
25757
|
+
"onUpdate:modelValue": _cache[79] || (_cache[79] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveColor = $event),
|
|
25758
|
+
onChange: _cache[80] || (_cache[80] = $event => paramsChanged('rememberCurveColor'))
|
|
25624
25759
|
}, null, 8
|
|
25625
25760
|
/* PROPS */
|
|
25626
25761
|
, ["modelValue"])]),
|
|
@@ -25641,8 +25776,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25641
25776
|
}, {
|
|
25642
25777
|
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
25778
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurve,
|
|
25644
|
-
"onUpdate:modelValue": _cache[
|
|
25645
|
-
onChange: _cache[
|
|
25779
|
+
"onUpdate:modelValue": _cache[81] || (_cache[81] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurve = $event),
|
|
25780
|
+
onChange: _cache[82] || (_cache[82] = $event => paramsChanged('intervalCurve'))
|
|
25646
25781
|
}, null, 8
|
|
25647
25782
|
/* PROPS */
|
|
25648
25783
|
, ["modelValue"])]),
|
|
@@ -25669,11 +25804,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25669
25804
|
}, {
|
|
25670
25805
|
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
25806
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
25672
|
-
"onUpdate:modelValue": _cache[
|
|
25807
|
+
"onUpdate:modelValue": _cache[83] || (_cache[83] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
25673
25808
|
step: 0.1,
|
|
25674
25809
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
25675
25810
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
25676
|
-
onInput: _cache[
|
|
25811
|
+
onInput: _cache[84] || (_cache[84] = $event => paramsChanged('intervalCurveWidth'))
|
|
25677
25812
|
}, null, 8
|
|
25678
25813
|
/* PROPS */
|
|
25679
25814
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -25685,11 +25820,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25685
25820
|
}, {
|
|
25686
25821
|
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
25822
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
25688
|
-
"onUpdate:modelValue": _cache[
|
|
25823
|
+
"onUpdate:modelValue": _cache[85] || (_cache[85] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
25689
25824
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
25690
25825
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
25691
25826
|
step: 0.1,
|
|
25692
|
-
onInput: _cache[
|
|
25827
|
+
onInput: _cache[86] || (_cache[86] = $event => paramsChanged('intervalCurveWidth')),
|
|
25693
25828
|
"controls-position": "right"
|
|
25694
25829
|
}, null, 8
|
|
25695
25830
|
/* PROPS */
|
|
@@ -25717,8 +25852,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25717
25852
|
}, {
|
|
25718
25853
|
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
25854
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveColor,
|
|
25720
|
-
"onUpdate:modelValue": _cache[
|
|
25721
|
-
onChange: _cache[
|
|
25855
|
+
"onUpdate:modelValue": _cache[87] || (_cache[87] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveColor = $event),
|
|
25856
|
+
onChange: _cache[88] || (_cache[88] = $event => paramsChanged('intervalCurveColor'))
|
|
25722
25857
|
}, null, 8
|
|
25723
25858
|
/* PROPS */
|
|
25724
25859
|
, ["modelValue"])]),
|
|
@@ -25739,8 +25874,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25739
25874
|
}, {
|
|
25740
25875
|
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
25876
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurve,
|
|
25742
|
-
"onUpdate:modelValue": _cache[
|
|
25743
|
-
onChange: _cache[
|
|
25877
|
+
"onUpdate:modelValue": _cache[89] || (_cache[89] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurve = $event),
|
|
25878
|
+
onChange: _cache[90] || (_cache[90] = $event => paramsChanged('extraCurve'))
|
|
25744
25879
|
}, null, 8
|
|
25745
25880
|
/* PROPS */
|
|
25746
25881
|
, ["modelValue"])]),
|
|
@@ -25767,11 +25902,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25767
25902
|
}, {
|
|
25768
25903
|
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
25904
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
25770
|
-
"onUpdate:modelValue": _cache[
|
|
25905
|
+
"onUpdate:modelValue": _cache[91] || (_cache[91] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
25771
25906
|
step: 0.1,
|
|
25772
25907
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
25773
25908
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
25774
|
-
onInput: _cache[
|
|
25909
|
+
onInput: _cache[92] || (_cache[92] = $event => paramsChanged('extraCurveWidth'))
|
|
25775
25910
|
}, null, 8
|
|
25776
25911
|
/* PROPS */
|
|
25777
25912
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -25783,11 +25918,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25783
25918
|
}, {
|
|
25784
25919
|
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
25920
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
25786
|
-
"onUpdate:modelValue": _cache[
|
|
25921
|
+
"onUpdate:modelValue": _cache[93] || (_cache[93] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
25787
25922
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
25788
25923
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
25789
25924
|
step: 0.1,
|
|
25790
|
-
onInput: _cache[
|
|
25925
|
+
onInput: _cache[94] || (_cache[94] = $event => paramsChanged('extraCurveWidth')),
|
|
25791
25926
|
"controls-position": "right"
|
|
25792
25927
|
}, null, 8
|
|
25793
25928
|
/* PROPS */
|
|
@@ -25815,8 +25950,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25815
25950
|
}, {
|
|
25816
25951
|
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
25952
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveColor,
|
|
25818
|
-
"onUpdate:modelValue": _cache[
|
|
25819
|
-
onChange: _cache[
|
|
25953
|
+
"onUpdate:modelValue": _cache[95] || (_cache[95] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveColor = $event),
|
|
25954
|
+
onChange: _cache[96] || (_cache[96] = $event => paramsChanged('extraCurveColor'))
|
|
25820
25955
|
}, null, 8
|
|
25821
25956
|
/* PROPS */
|
|
25822
25957
|
, ["modelValue"])]),
|
|
@@ -25861,7 +25996,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25861
25996
|
}, {
|
|
25862
25997
|
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
25998
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle,
|
|
25864
|
-
"onUpdate:modelValue": _cache[
|
|
25999
|
+
"onUpdate:modelValue": _cache[97] || (_cache[97] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle = $event),
|
|
25865
26000
|
onChange: onChangeFillStyle
|
|
25866
26001
|
}, {
|
|
25867
26002
|
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 +26039,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25904
26039
|
}, {
|
|
25905
26040
|
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
26041
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha,
|
|
25907
|
-
"onUpdate:modelValue": _cache[
|
|
26042
|
+
"onUpdate:modelValue": _cache[98] || (_cache[98] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha = $event),
|
|
25908
26043
|
min: 0,
|
|
25909
26044
|
max: 1,
|
|
25910
26045
|
step: 0.01,
|
|
25911
|
-
onInput: _cache[
|
|
26046
|
+
onInput: _cache[99] || (_cache[99] = $event => paramsChanged('alpha'))
|
|
25912
26047
|
}, null, 8
|
|
25913
26048
|
/* PROPS */
|
|
25914
26049
|
, ["modelValue", "step"])]),
|
|
@@ -25920,12 +26055,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25920
26055
|
}, {
|
|
25921
26056
|
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
26057
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha,
|
|
25923
|
-
"onUpdate:modelValue": _cache[
|
|
26058
|
+
"onUpdate:modelValue": _cache[100] || (_cache[100] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha = $event),
|
|
25924
26059
|
min: 0,
|
|
25925
26060
|
max: 1,
|
|
25926
26061
|
step: 0.01,
|
|
25927
26062
|
"controls-position": "right",
|
|
25928
|
-
onInput: _cache[
|
|
26063
|
+
onInput: _cache[101] || (_cache[101] = $event => paramsChanged('alpha'))
|
|
25929
26064
|
}, null, 8
|
|
25930
26065
|
/* PROPS */
|
|
25931
26066
|
, ["modelValue", "step"])]),
|
|
@@ -25960,11 +26095,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25960
26095
|
}, {
|
|
25961
26096
|
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
26097
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
25963
|
-
"onUpdate:modelValue": _cache[
|
|
26098
|
+
"onUpdate:modelValue": _cache[102] || (_cache[102] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight = $event),
|
|
25964
26099
|
min: 0,
|
|
25965
26100
|
step: 100,
|
|
25966
26101
|
max: 8000,
|
|
25967
|
-
onInput: _cache[
|
|
26102
|
+
onInput: _cache[103] || (_cache[103] = $event => paramsChanged('minHeight'))
|
|
25968
26103
|
}, null, 8
|
|
25969
26104
|
/* PROPS */
|
|
25970
26105
|
, ["modelValue"])]),
|
|
@@ -25976,12 +26111,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25976
26111
|
}, {
|
|
25977
26112
|
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
26113
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
25979
|
-
"onUpdate:modelValue": _cache[
|
|
26114
|
+
"onUpdate:modelValue": _cache[104] || (_cache[104] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight = $event),
|
|
25980
26115
|
min: 0,
|
|
25981
26116
|
step: 100,
|
|
25982
26117
|
max: 8000,
|
|
25983
26118
|
"controls-position": "right",
|
|
25984
|
-
onInput: _cache[
|
|
26119
|
+
onInput: _cache[105] || (_cache[105] = $event => paramsChanged('minHeight'))
|
|
25985
26120
|
}, null, 8
|
|
25986
26121
|
/* PROPS */
|
|
25987
26122
|
, ["modelValue"])]),
|
|
@@ -26016,11 +26151,11 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26016
26151
|
}, {
|
|
26017
26152
|
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
26153
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
26019
|
-
"onUpdate:modelValue": _cache[
|
|
26154
|
+
"onUpdate:modelValue": _cache[106] || (_cache[106] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight = $event),
|
|
26020
26155
|
min: 0,
|
|
26021
26156
|
step: 100,
|
|
26022
26157
|
max: 8000,
|
|
26023
|
-
onInput: _cache[
|
|
26158
|
+
onInput: _cache[107] || (_cache[107] = $event => paramsChanged('maxHeight'))
|
|
26024
26159
|
}, null, 8
|
|
26025
26160
|
/* PROPS */
|
|
26026
26161
|
, ["modelValue"])]),
|
|
@@ -26032,12 +26167,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26032
26167
|
}, {
|
|
26033
26168
|
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
26169
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
26035
|
-
"onUpdate:modelValue": _cache[
|
|
26170
|
+
"onUpdate:modelValue": _cache[108] || (_cache[108] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight = $event),
|
|
26036
26171
|
min: 0,
|
|
26037
26172
|
step: 100,
|
|
26038
26173
|
max: 8000,
|
|
26039
26174
|
"controls-position": "right",
|
|
26040
|
-
onInput: _cache[
|
|
26175
|
+
onInput: _cache[109] || (_cache[109] = $event => paramsChanged('maxHeight'))
|
|
26041
26176
|
}, null, 8
|
|
26042
26177
|
/* PROPS */
|
|
26043
26178
|
, ["modelValue"])]),
|
|
@@ -26102,7 +26237,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26102
26237
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight,
|
|
26103
26238
|
"onUpdate:modelValue": $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight = $event,
|
|
26104
26239
|
disabled: true,
|
|
26105
|
-
onInput: _cache[
|
|
26240
|
+
onInput: _cache[110] || (_cache[110] = $event => paramsChanged('colorTableHeight')),
|
|
26106
26241
|
"controls-position": "right"
|
|
26107
26242
|
}, null, 8
|
|
26108
26243
|
/* PROPS */
|
|
@@ -26112,7 +26247,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26112
26247
|
"onUpdate:modelValue": $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight = $event,
|
|
26113
26248
|
disabled: true,
|
|
26114
26249
|
step: 1,
|
|
26115
|
-
onInput: _cache[
|
|
26250
|
+
onInput: _cache[111] || (_cache[111] = $event => paramsChanged('colorTableHeight')),
|
|
26116
26251
|
"controls-position": "right"
|
|
26117
26252
|
}, null, 8
|
|
26118
26253
|
/* PROPS */
|
|
@@ -26125,7 +26260,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26125
26260
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight,
|
|
26126
26261
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index + 1].colorTableHeight,
|
|
26127
26262
|
step: 1,
|
|
26128
|
-
onInput: _cache[
|
|
26263
|
+
onInput: _cache[112] || (_cache[112] = $event => paramsChanged('colorTableHeight')),
|
|
26129
26264
|
"controls-position": "right"
|
|
26130
26265
|
}, null, 8
|
|
26131
26266
|
/* PROPS */
|
|
@@ -26135,7 +26270,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26135
26270
|
"onUpdate:modelValue": $event => item.colorTableHeight = $event,
|
|
26136
26271
|
step: 1,
|
|
26137
26272
|
disabled: true,
|
|
26138
|
-
onInput: _cache[
|
|
26273
|
+
onInput: _cache[113] || (_cache[113] = $event => paramsChanged('colorTableHeight')),
|
|
26139
26274
|
"controls-position": "right"
|
|
26140
26275
|
}, null, 8
|
|
26141
26276
|
/* PROPS */
|
|
@@ -26151,7 +26286,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26151
26286
|
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
26287
|
modelValue: item.colorTable,
|
|
26153
26288
|
"onUpdate:modelValue": $event => item.colorTable = $event,
|
|
26154
|
-
onChange: _cache[
|
|
26289
|
+
onChange: _cache[114] || (_cache[114] = $event => paramsChanged('colorTable'))
|
|
26155
26290
|
}, null, 8
|
|
26156
26291
|
/* PROPS */
|
|
26157
26292
|
, ["modelValue", "onUpdate:modelValue"])]),
|
|
@@ -26190,8 +26325,8 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26190
26325
|
|
|
26191
26326
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio_group, {
|
|
26192
26327
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorImage,
|
|
26193
|
-
"onUpdate:modelValue": _cache[
|
|
26194
|
-
onChange: _cache[
|
|
26328
|
+
"onUpdate:modelValue": _cache[115] || (_cache[115] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorImage = $event),
|
|
26329
|
+
onChange: _cache[116] || (_cache[116] = $event => paramsChanged('image'))
|
|
26195
26330
|
}, {
|
|
26196
26331
|
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
26332
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
|
|
@@ -26258,7 +26393,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26258
26393
|
}, 8
|
|
26259
26394
|
/* PROPS */
|
|
26260
26395
|
, ["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[
|
|
26396
|
+
onClick: _cache[118] || (_cache[118] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
26262
26397
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startAnalysis,
|
|
26263
26398
|
type: "primary"
|
|
26264
26399
|
}, {
|
|
@@ -26271,7 +26406,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26271
26406
|
}, 8
|
|
26272
26407
|
/* PROPS */
|
|
26273
26408
|
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
26274
|
-
onClick: _cache[
|
|
26409
|
+
onClick: _cache[119] || (_cache[119] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => clearResult(), ["stop"])),
|
|
26275
26410
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clearResult
|
|
26276
26411
|
}, {
|
|
26277
26412
|
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
|
|
@@ -32270,13 +32405,21 @@ WeatherEffect.install = (Vue, opts) => {
|
|
|
32270
32405
|
class CompareMapViewModel {
|
|
32271
32406
|
// 三维视图对象
|
|
32272
32407
|
//三维viewer对象
|
|
32273
|
-
constructor(scenceView) {
|
|
32408
|
+
constructor(scenceView, options = {}) {
|
|
32274
32409
|
_defineProperty(this, "_scenceView", null);
|
|
32275
32410
|
|
|
32276
32411
|
_defineProperty(this, "_viewer", null);
|
|
32277
32412
|
|
|
32278
32413
|
this._scenceView = scenceView;
|
|
32279
32414
|
this._viewer = scenceView._viewer;
|
|
32415
|
+
|
|
32416
|
+
if (options.splitLineColor) {
|
|
32417
|
+
this._viewer.scene.splitLineColor = Cesium.Color.fromCssColorString(options.splitLineColor);
|
|
32418
|
+
}
|
|
32419
|
+
|
|
32420
|
+
if (options.splitLineWidth) {
|
|
32421
|
+
this._viewer.scene.splitLineWidth = options.splitLineWidth;
|
|
32422
|
+
}
|
|
32280
32423
|
} //切换窗口模式
|
|
32281
32424
|
|
|
32282
32425
|
|
|
@@ -32538,6 +32681,13 @@ const CompareMapvue_type_script_setup_true_lang_js_default_ = {
|
|
|
32538
32681
|
defaultSelectAll: {
|
|
32539
32682
|
type: Boolean,
|
|
32540
32683
|
default: true
|
|
32684
|
+
},
|
|
32685
|
+
splitLineColor: {
|
|
32686
|
+
type: String
|
|
32687
|
+
},
|
|
32688
|
+
splitLineWidth: {
|
|
32689
|
+
type: Number,
|
|
32690
|
+
default: 2
|
|
32541
32691
|
}
|
|
32542
32692
|
},
|
|
32543
32693
|
emits: ["back"],
|
|
@@ -32576,7 +32726,11 @@ const CompareMapvue_type_script_setup_true_lang_js_default_ = {
|
|
|
32576
32726
|
offsetTop.value = props.offsetTop;
|
|
32577
32727
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
32578
32728
|
if (scenceView) {
|
|
32579
|
-
|
|
32729
|
+
let options = {
|
|
32730
|
+
splitLineColor: props.splitLineColor,
|
|
32731
|
+
splitLineWidth: props.splitLineWidth
|
|
32732
|
+
};
|
|
32733
|
+
viewModel = new CompareMapViewModel(scenceView, options);
|
|
32580
32734
|
}
|
|
32581
32735
|
});
|
|
32582
32736
|
}); //切换窗口模式
|
|
@@ -33292,17 +33446,16 @@ class HawkeyeViewModel {
|
|
|
33292
33446
|
}
|
|
33293
33447
|
|
|
33294
33448
|
init(options) {
|
|
33295
|
-
if
|
|
33296
|
-
|
|
33297
|
-
|
|
33298
|
-
|
|
33299
|
-
|
|
33300
|
-
|
|
33301
|
-
|
|
33302
|
-
|
|
33303
|
-
|
|
33304
|
-
}
|
|
33305
|
-
|
|
33449
|
+
// if(!options.layers) {
|
|
33450
|
+
// let layers = [];
|
|
33451
|
+
// options.viewer.imageryLayers._layers.forEach(function (layer) {
|
|
33452
|
+
// layers.push(layer);
|
|
33453
|
+
// });
|
|
33454
|
+
// options.layers = layers;
|
|
33455
|
+
// options.layers = new Cesium.Kq3dArcGISMapServerImageryProvider({
|
|
33456
|
+
// url: 'https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer'
|
|
33457
|
+
// });
|
|
33458
|
+
// }
|
|
33306
33459
|
this._overviewMap = new Cesium.Kq3dOverviewMap(options);
|
|
33307
33460
|
} //显示
|
|
33308
33461
|
|
|
@@ -33314,6 +33467,17 @@ class HawkeyeViewModel {
|
|
|
33314
33467
|
|
|
33315
33468
|
hide() {
|
|
33316
33469
|
this._overviewMap.show = false;
|
|
33470
|
+
} // 设置图层
|
|
33471
|
+
|
|
33472
|
+
|
|
33473
|
+
setLayers(layers) {
|
|
33474
|
+
if (Array.isArray(layers)) {
|
|
33475
|
+
this._overviewMap._viewer.imageryLayers.removeAll();
|
|
33476
|
+
|
|
33477
|
+
layers.forEach(layer => {
|
|
33478
|
+
this._overviewMap._viewer.imageryLayers.add(layer);
|
|
33479
|
+
});
|
|
33480
|
+
}
|
|
33317
33481
|
} //销毁
|
|
33318
33482
|
|
|
33319
33483
|
|
|
@@ -33400,6 +33564,10 @@ const Hawkeyevue_type_script_setup_true_lang_js_default_ = {
|
|
|
33400
33564
|
|
|
33401
33565
|
function hide() {
|
|
33402
33566
|
viewModel && viewModel.hide();
|
|
33567
|
+
}
|
|
33568
|
+
|
|
33569
|
+
function setLayers(layers) {
|
|
33570
|
+
viewModel && viewModel.setLayers(layers);
|
|
33403
33571
|
} // 销毁
|
|
33404
33572
|
|
|
33405
33573
|
|
|
@@ -33408,7 +33576,8 @@ const Hawkeyevue_type_script_setup_true_lang_js_default_ = {
|
|
|
33408
33576
|
});
|
|
33409
33577
|
expose({
|
|
33410
33578
|
show,
|
|
33411
|
-
hide
|
|
33579
|
+
hide,
|
|
33580
|
+
setLayers
|
|
33412
33581
|
});
|
|
33413
33582
|
return (_ctx, _cache) => {
|
|
33414
33583
|
return null;
|
|
@@ -37361,6 +37530,16 @@ class SceneSetViewModel {
|
|
|
37361
37530
|
|
|
37362
37531
|
setSurfaceTransparency(val) {
|
|
37363
37532
|
this._undergroundManager.transparent = Number(val);
|
|
37533
|
+
} // 设置地形夸张系数
|
|
37534
|
+
|
|
37535
|
+
|
|
37536
|
+
setExaggerationFactor(val) {
|
|
37537
|
+
this._viewer.scene.globe.terrainExaggeration = Number(val);
|
|
37538
|
+
} // 设置地形夸张基准高度
|
|
37539
|
+
|
|
37540
|
+
|
|
37541
|
+
setAltitudeHeight(val) {
|
|
37542
|
+
this._viewer.scene.globe.terrainExaggerationRelativeHeight = Number(val);
|
|
37364
37543
|
} // 销毁
|
|
37365
37544
|
|
|
37366
37545
|
|
|
@@ -37379,6 +37558,8 @@ class SceneSetViewModel {
|
|
|
37379
37558
|
this._removeChangedEvent = null;
|
|
37380
37559
|
this.setSkyBoxStyle("default");
|
|
37381
37560
|
this._viewer.scene.skyBox = this._defaultSkyBox;
|
|
37561
|
+
this._viewer.scene.globe.terrainExaggeration = 1.0;
|
|
37562
|
+
this._viewer.scene.globe.terrainExaggerationRelativeHeight = 0;
|
|
37382
37563
|
}
|
|
37383
37564
|
|
|
37384
37565
|
}
|
|
@@ -37465,6 +37646,13 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
37465
37646
|
fps: false,
|
|
37466
37647
|
deep: false,
|
|
37467
37648
|
skyBox: false
|
|
37649
|
+
}); // 地形参数
|
|
37650
|
+
|
|
37651
|
+
let terrainParams = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
37652
|
+
exaggerationFactor: 1.0,
|
|
37653
|
+
// 夸张系数
|
|
37654
|
+
altitudeHeight: 0 // 基准高度
|
|
37655
|
+
|
|
37468
37656
|
}); //其他参数
|
|
37469
37657
|
|
|
37470
37658
|
let otherParams = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
@@ -37605,6 +37793,14 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
37605
37793
|
viewModel.setSurfaceTransparency(otherParams.transparency);
|
|
37606
37794
|
break;
|
|
37607
37795
|
|
|
37796
|
+
case "exaggerationFactor":
|
|
37797
|
+
viewModel.setExaggerationFactor(terrainParams.exaggerationFactor);
|
|
37798
|
+
break;
|
|
37799
|
+
|
|
37800
|
+
case "altitudeHeight":
|
|
37801
|
+
viewModel.setAltitudeHeight(terrainParams.altitudeHeight);
|
|
37802
|
+
break;
|
|
37803
|
+
|
|
37608
37804
|
default:
|
|
37609
37805
|
break;
|
|
37610
37806
|
}
|
|
@@ -38629,6 +38825,126 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38629
38825
|
_: 1
|
|
38630
38826
|
/* STABLE */
|
|
38631
38827
|
|
|
38828
|
+
}, 8
|
|
38829
|
+
/* PROPS */
|
|
38830
|
+
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse_item, {
|
|
38831
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).terrainExaggeration,
|
|
38832
|
+
name: "terrain"
|
|
38833
|
+
}, {
|
|
38834
|
+
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, {
|
|
38835
|
+
"label-width": "90px",
|
|
38836
|
+
"label-position": "left"
|
|
38837
|
+
}, {
|
|
38838
|
+
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, {
|
|
38839
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).exaggerationFactor
|
|
38840
|
+
}, {
|
|
38841
|
+
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, {
|
|
38842
|
+
style: {
|
|
38843
|
+
"display": "flex"
|
|
38844
|
+
}
|
|
38845
|
+
}, {
|
|
38846
|
+
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, {
|
|
38847
|
+
span: 16
|
|
38848
|
+
}, {
|
|
38849
|
+
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, {
|
|
38850
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).exaggerationFactor,
|
|
38851
|
+
"onUpdate:modelValue": _cache[70] || (_cache[70] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).exaggerationFactor = $event),
|
|
38852
|
+
step: 0.1,
|
|
38853
|
+
min: 0,
|
|
38854
|
+
max: 10,
|
|
38855
|
+
onInput: _cache[71] || (_cache[71] = $event => paramsChanged('exaggerationFactor'))
|
|
38856
|
+
}, null, 8
|
|
38857
|
+
/* PROPS */
|
|
38858
|
+
, ["modelValue", "step"])]),
|
|
38859
|
+
_: 1
|
|
38860
|
+
/* STABLE */
|
|
38861
|
+
|
|
38862
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
38863
|
+
span: 8
|
|
38864
|
+
}, {
|
|
38865
|
+
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, {
|
|
38866
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).exaggerationFactor,
|
|
38867
|
+
"onUpdate:modelValue": _cache[72] || (_cache[72] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).exaggerationFactor = $event),
|
|
38868
|
+
step: 0.1,
|
|
38869
|
+
min: 0,
|
|
38870
|
+
max: 10,
|
|
38871
|
+
"controls-position": "right",
|
|
38872
|
+
onInput: _cache[73] || (_cache[73] = $event => paramsChanged('exaggerationFactor'))
|
|
38873
|
+
}, null, 8
|
|
38874
|
+
/* PROPS */
|
|
38875
|
+
, ["modelValue", "step"])]),
|
|
38876
|
+
_: 1
|
|
38877
|
+
/* STABLE */
|
|
38878
|
+
|
|
38879
|
+
})]),
|
|
38880
|
+
_: 1
|
|
38881
|
+
/* STABLE */
|
|
38882
|
+
|
|
38883
|
+
})]),
|
|
38884
|
+
_: 1
|
|
38885
|
+
/* STABLE */
|
|
38886
|
+
|
|
38887
|
+
}, 8
|
|
38888
|
+
/* PROPS */
|
|
38889
|
+
, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
38890
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).altitudeHeight
|
|
38891
|
+
}, {
|
|
38892
|
+
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, {
|
|
38893
|
+
style: {
|
|
38894
|
+
"display": "flex"
|
|
38895
|
+
}
|
|
38896
|
+
}, {
|
|
38897
|
+
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, {
|
|
38898
|
+
span: 16
|
|
38899
|
+
}, {
|
|
38900
|
+
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, {
|
|
38901
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).altitudeHeight,
|
|
38902
|
+
"onUpdate:modelValue": _cache[74] || (_cache[74] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).altitudeHeight = $event),
|
|
38903
|
+
step: 1,
|
|
38904
|
+
min: -1000,
|
|
38905
|
+
max: 1000,
|
|
38906
|
+
onInput: _cache[75] || (_cache[75] = $event => paramsChanged('altitudeHeight'))
|
|
38907
|
+
}, null, 8
|
|
38908
|
+
/* PROPS */
|
|
38909
|
+
, ["modelValue"])]),
|
|
38910
|
+
_: 1
|
|
38911
|
+
/* STABLE */
|
|
38912
|
+
|
|
38913
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
38914
|
+
span: 8
|
|
38915
|
+
}, {
|
|
38916
|
+
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, {
|
|
38917
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).altitudeHeight,
|
|
38918
|
+
"onUpdate:modelValue": _cache[76] || (_cache[76] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).altitudeHeight = $event),
|
|
38919
|
+
step: 1,
|
|
38920
|
+
min: -1000,
|
|
38921
|
+
max: 1000,
|
|
38922
|
+
"controls-position": "right",
|
|
38923
|
+
onInput: _cache[77] || (_cache[77] = $event => paramsChanged('altitudeHeight'))
|
|
38924
|
+
}, null, 8
|
|
38925
|
+
/* PROPS */
|
|
38926
|
+
, ["modelValue"])]),
|
|
38927
|
+
_: 1
|
|
38928
|
+
/* STABLE */
|
|
38929
|
+
|
|
38930
|
+
})]),
|
|
38931
|
+
_: 1
|
|
38932
|
+
/* STABLE */
|
|
38933
|
+
|
|
38934
|
+
})]),
|
|
38935
|
+
_: 1
|
|
38936
|
+
/* STABLE */
|
|
38937
|
+
|
|
38938
|
+
}, 8
|
|
38939
|
+
/* PROPS */
|
|
38940
|
+
, ["label"])]),
|
|
38941
|
+
_: 1
|
|
38942
|
+
/* STABLE */
|
|
38943
|
+
|
|
38944
|
+
})]),
|
|
38945
|
+
_: 1
|
|
38946
|
+
/* STABLE */
|
|
38947
|
+
|
|
38632
38948
|
}, 8
|
|
38633
38949
|
/* PROPS */
|
|
38634
38950
|
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse_item, {
|
|
@@ -38645,8 +38961,8 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38645
38961
|
}, {
|
|
38646
38962
|
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
38963
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).viewMode,
|
|
38648
|
-
"onUpdate:modelValue": _cache[
|
|
38649
|
-
onChange: _cache[
|
|
38964
|
+
"onUpdate:modelValue": _cache[78] || (_cache[78] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).viewMode = $event),
|
|
38965
|
+
onChange: _cache[79] || (_cache[79] = $event => paramsChanged('viewMode'))
|
|
38650
38966
|
}, {
|
|
38651
38967
|
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
38968
|
label: "3d"
|
|
@@ -38693,8 +39009,8 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38693
39009
|
}, {
|
|
38694
39010
|
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
39011
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).grid,
|
|
38696
|
-
"onUpdate:modelValue": _cache[
|
|
38697
|
-
onChange: _cache[
|
|
39012
|
+
"onUpdate:modelValue": _cache[80] || (_cache[80] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).grid = $event),
|
|
39013
|
+
onChange: _cache[81] || (_cache[81] = $event => paramsChanged('grid'))
|
|
38698
39014
|
}, {
|
|
38699
39015
|
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
39016
|
label: "no"
|
|
@@ -38740,9 +39056,9 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38740
39056
|
}, {
|
|
38741
39057
|
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
39058
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).underground,
|
|
38743
|
-
"onUpdate:modelValue": _cache[
|
|
39059
|
+
"onUpdate:modelValue": _cache[82] || (_cache[82] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).underground = $event),
|
|
38744
39060
|
"controls-position": "left",
|
|
38745
|
-
onChange: _cache[
|
|
39061
|
+
onChange: _cache[83] || (_cache[83] = $event => paramsChanged('underground'))
|
|
38746
39062
|
}, null, 8
|
|
38747
39063
|
/* PROPS */
|
|
38748
39064
|
, ["modelValue"])]),
|
|
@@ -38764,11 +39080,11 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38764
39080
|
}, {
|
|
38765
39081
|
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
39082
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).transparency,
|
|
38767
|
-
"onUpdate:modelValue": _cache[
|
|
39083
|
+
"onUpdate:modelValue": _cache[84] || (_cache[84] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).transparency = $event),
|
|
38768
39084
|
step: 0.01,
|
|
38769
39085
|
min: 0,
|
|
38770
39086
|
max: 1,
|
|
38771
|
-
onInput: _cache[
|
|
39087
|
+
onInput: _cache[85] || (_cache[85] = $event => paramsChanged('transparency'))
|
|
38772
39088
|
}, null, 8
|
|
38773
39089
|
/* PROPS */
|
|
38774
39090
|
, ["modelValue", "step"])]),
|
|
@@ -38780,12 +39096,12 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38780
39096
|
}, {
|
|
38781
39097
|
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
39098
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).transparency,
|
|
38783
|
-
"onUpdate:modelValue": _cache[
|
|
39099
|
+
"onUpdate:modelValue": _cache[86] || (_cache[86] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).transparency = $event),
|
|
38784
39100
|
step: 0.01,
|
|
38785
39101
|
min: 0,
|
|
38786
39102
|
max: 1,
|
|
38787
39103
|
"controls-position": "right",
|
|
38788
|
-
onInput: _cache[
|
|
39104
|
+
onInput: _cache[87] || (_cache[87] = $event => paramsChanged('transparency'))
|
|
38789
39105
|
}, null, 8
|
|
38790
39106
|
/* PROPS */
|
|
38791
39107
|
, ["modelValue", "step"])]),
|
|
@@ -38827,23 +39143,23 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38827
39143
|
}));
|
|
38828
39144
|
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=script&setup=true&lang=js
|
|
38829
39145
|
|
|
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=
|
|
39146
|
+
// 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
|
|
39147
|
+
var SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss = __webpack_require__(632);
|
|
39148
|
+
;// 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
39149
|
|
|
38834
39150
|
|
|
38835
39151
|
|
|
38836
|
-
var
|
|
39152
|
+
var SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss_options = {};
|
|
38837
39153
|
|
|
38838
|
-
|
|
38839
|
-
|
|
39154
|
+
SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss_options.insert = "head";
|
|
39155
|
+
SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss_options.singleton = false;
|
|
38840
39156
|
|
|
38841
|
-
var
|
|
39157
|
+
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
39158
|
|
|
38843
39159
|
|
|
38844
39160
|
|
|
38845
|
-
/* harmony default export */ var
|
|
38846
|
-
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=
|
|
39161
|
+
/* 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 || {});
|
|
39162
|
+
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=75fa85b8&lang=scss
|
|
38847
39163
|
|
|
38848
39164
|
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue
|
|
38849
39165
|
|