@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/sceneview/index.js
CHANGED
|
@@ -6854,13 +6854,21 @@ ClientPrint.install = (Vue, opts) => {
|
|
|
6854
6854
|
class CompareMapViewModel {
|
|
6855
6855
|
// 三维视图对象
|
|
6856
6856
|
//三维viewer对象
|
|
6857
|
-
constructor(scenceView) {
|
|
6857
|
+
constructor(scenceView, options = {}) {
|
|
6858
6858
|
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_scenceView", null);
|
|
6859
6859
|
|
|
6860
6860
|
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_viewer", null);
|
|
6861
6861
|
|
|
6862
6862
|
this._scenceView = scenceView;
|
|
6863
6863
|
this._viewer = scenceView._viewer;
|
|
6864
|
+
|
|
6865
|
+
if (options.splitLineColor) {
|
|
6866
|
+
this._viewer.scene.splitLineColor = Cesium.Color.fromCssColorString(options.splitLineColor);
|
|
6867
|
+
}
|
|
6868
|
+
|
|
6869
|
+
if (options.splitLineWidth) {
|
|
6870
|
+
this._viewer.scene.splitLineWidth = options.splitLineWidth;
|
|
6871
|
+
}
|
|
6864
6872
|
} //切换窗口模式
|
|
6865
6873
|
|
|
6866
6874
|
|
|
@@ -7149,6 +7157,13 @@ const CompareMapvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7149
7157
|
defaultSelectAll: {
|
|
7150
7158
|
type: Boolean,
|
|
7151
7159
|
default: true
|
|
7160
|
+
},
|
|
7161
|
+
splitLineColor: {
|
|
7162
|
+
type: String
|
|
7163
|
+
},
|
|
7164
|
+
splitLineWidth: {
|
|
7165
|
+
type: Number,
|
|
7166
|
+
default: 2
|
|
7152
7167
|
}
|
|
7153
7168
|
},
|
|
7154
7169
|
emits: ["back"],
|
|
@@ -7187,7 +7202,11 @@ const CompareMapvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7187
7202
|
offsetTop.value = props.offsetTop;
|
|
7188
7203
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
7189
7204
|
if (scenceView) {
|
|
7190
|
-
|
|
7205
|
+
let options = {
|
|
7206
|
+
splitLineColor: props.splitLineColor,
|
|
7207
|
+
splitLineWidth: props.splitLineWidth
|
|
7208
|
+
};
|
|
7209
|
+
viewModel = new CompareMapViewModel/* default */.Z(scenceView, options);
|
|
7191
7210
|
}
|
|
7192
7211
|
});
|
|
7193
7212
|
}); //切换窗口模式
|
|
@@ -12468,17 +12487,16 @@ class HawkeyeViewModel {
|
|
|
12468
12487
|
}
|
|
12469
12488
|
|
|
12470
12489
|
init(options) {
|
|
12471
|
-
if
|
|
12472
|
-
|
|
12473
|
-
|
|
12474
|
-
|
|
12475
|
-
|
|
12476
|
-
|
|
12477
|
-
|
|
12478
|
-
|
|
12479
|
-
|
|
12480
|
-
}
|
|
12481
|
-
|
|
12490
|
+
// if(!options.layers) {
|
|
12491
|
+
// let layers = [];
|
|
12492
|
+
// options.viewer.imageryLayers._layers.forEach(function (layer) {
|
|
12493
|
+
// layers.push(layer);
|
|
12494
|
+
// });
|
|
12495
|
+
// options.layers = layers;
|
|
12496
|
+
// options.layers = new Cesium.Kq3dArcGISMapServerImageryProvider({
|
|
12497
|
+
// url: 'https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer'
|
|
12498
|
+
// });
|
|
12499
|
+
// }
|
|
12482
12500
|
this._overviewMap = new Cesium.Kq3dOverviewMap(options);
|
|
12483
12501
|
} //显示
|
|
12484
12502
|
|
|
@@ -12490,6 +12508,17 @@ class HawkeyeViewModel {
|
|
|
12490
12508
|
|
|
12491
12509
|
hide() {
|
|
12492
12510
|
this._overviewMap.show = false;
|
|
12511
|
+
} // 设置图层
|
|
12512
|
+
|
|
12513
|
+
|
|
12514
|
+
setLayers(layers) {
|
|
12515
|
+
if (Array.isArray(layers)) {
|
|
12516
|
+
this._overviewMap._viewer.imageryLayers.removeAll();
|
|
12517
|
+
|
|
12518
|
+
layers.forEach(layer => {
|
|
12519
|
+
this._overviewMap._viewer.imageryLayers.add(layer);
|
|
12520
|
+
});
|
|
12521
|
+
}
|
|
12493
12522
|
} //销毁
|
|
12494
12523
|
|
|
12495
12524
|
|
|
@@ -12597,6 +12626,10 @@ const __default__ = {
|
|
|
12597
12626
|
|
|
12598
12627
|
function hide() {
|
|
12599
12628
|
viewModel && viewModel.hide();
|
|
12629
|
+
}
|
|
12630
|
+
|
|
12631
|
+
function setLayers(layers) {
|
|
12632
|
+
viewModel && viewModel.setLayers(layers);
|
|
12600
12633
|
} // 销毁
|
|
12601
12634
|
|
|
12602
12635
|
|
|
@@ -12605,7 +12638,8 @@ const __default__ = {
|
|
|
12605
12638
|
});
|
|
12606
12639
|
expose({
|
|
12607
12640
|
show,
|
|
12608
|
-
hide
|
|
12641
|
+
hide,
|
|
12642
|
+
setLayers
|
|
12609
12643
|
});
|
|
12610
12644
|
return (_ctx, _cache) => {
|
|
12611
12645
|
return null;
|
|
@@ -12883,7 +12917,7 @@ class IsolineAnalysisViewModel {
|
|
|
12883
12917
|
});
|
|
12884
12918
|
} else {
|
|
12885
12919
|
(0,message/* default */.Z)({
|
|
12886
|
-
message: "
|
|
12920
|
+
message: "请添加地形后分析!",
|
|
12887
12921
|
type: "warning"
|
|
12888
12922
|
});
|
|
12889
12923
|
}
|
|
@@ -12916,6 +12950,12 @@ class IsolineAnalysisViewModel {
|
|
|
12916
12950
|
setFirstCurve(show) {
|
|
12917
12951
|
this._options.firstCurve.show = show;
|
|
12918
12952
|
if (this._elevation) this._elevation.firstCurve = this._options.firstCurve;
|
|
12953
|
+
} //设置首曲线间隔
|
|
12954
|
+
|
|
12955
|
+
|
|
12956
|
+
setFirstCurveSpace(spaceing) {
|
|
12957
|
+
this._options.spaceing = Number(spaceing);
|
|
12958
|
+
if (this._elevation) this._elevation.spaceing = this._options.spaceing;
|
|
12919
12959
|
} //设置首曲线宽度
|
|
12920
12960
|
|
|
12921
12961
|
|
|
@@ -13180,10 +13220,16 @@ const __default__ = {
|
|
|
13180
13220
|
// 高程标注
|
|
13181
13221
|
firstCurve: props.settingParams && props.settingParams.firstCurve !== undefined || true,
|
|
13182
13222
|
// 首曲线
|
|
13223
|
+
spaceing: props.settingParams && props.settingParams.spaceing || 500,
|
|
13224
|
+
// 首曲线间隔
|
|
13225
|
+
minSpaceing: props.settingParams && props.settingParams.minSpaceing || 10,
|
|
13226
|
+
// 首曲线间隔最小值
|
|
13227
|
+
maxSpaceing: props.settingParams && props.settingParams.maxSpaceing || 1000,
|
|
13228
|
+
// 首曲线间隔最大值
|
|
13183
13229
|
firstCurveWidth: props.settingParams && props.settingParams.firstCurveWidth || 2,
|
|
13184
13230
|
// 首曲线宽度
|
|
13185
13231
|
minFirstCurveWidth: props.settingParams && props.settingParams.minFirstCurveWidth || 0,
|
|
13186
|
-
//
|
|
13232
|
+
// 首曲线宽度最小值
|
|
13187
13233
|
maxFirstCurveWidth: props.settingParams && props.settingParams.maxFirstCurveWidth || 5,
|
|
13188
13234
|
// 首曲线宽度最大值
|
|
13189
13235
|
firstCurveColor: props.settingParams && props.settingParams.firstCurveColor || "#E6A23C",
|
|
@@ -13259,7 +13305,7 @@ const __default__ = {
|
|
|
13259
13305
|
var options = {
|
|
13260
13306
|
minHeight: formItem.minHeight,
|
|
13261
13307
|
maxHeight: formItem.maxHeight,
|
|
13262
|
-
spaceing:
|
|
13308
|
+
spaceing: formItem.spaceing,
|
|
13263
13309
|
filltype: formItem.fillType,
|
|
13264
13310
|
fillStyle: formItem.fillStyle,
|
|
13265
13311
|
colorTableValue: [0.0, 0.1, 0.2, 0.3, 0.4],
|
|
@@ -13366,6 +13412,10 @@ const __default__ = {
|
|
|
13366
13412
|
viewModel.setFirstCurve(formItem.firstCurve);
|
|
13367
13413
|
break;
|
|
13368
13414
|
|
|
13415
|
+
case "firstCurveSpace":
|
|
13416
|
+
viewModel.setFirstCurveSpace(formItem.spaceing);
|
|
13417
|
+
break;
|
|
13418
|
+
|
|
13369
13419
|
case "firstCurveWidth":
|
|
13370
13420
|
viewModel.setFirstCurveWidth(formItem.firstCurveWidth);
|
|
13371
13421
|
break;
|
|
@@ -13620,6 +13670,62 @@ const __default__ = {
|
|
|
13620
13670
|
/* STABLE */
|
|
13621
13671
|
|
|
13622
13672
|
}), (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, {
|
|
13673
|
+
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, {
|
|
13674
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).firstCurveSpace
|
|
13675
|
+
}, {
|
|
13676
|
+
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, {
|
|
13677
|
+
style: {
|
|
13678
|
+
"display": "flex"
|
|
13679
|
+
}
|
|
13680
|
+
}, {
|
|
13681
|
+
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, {
|
|
13682
|
+
span: 16
|
|
13683
|
+
}, {
|
|
13684
|
+
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, {
|
|
13685
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing,
|
|
13686
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing = $event),
|
|
13687
|
+
step: 10,
|
|
13688
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minSpaceing,
|
|
13689
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxSpaceing,
|
|
13690
|
+
onInput: _cache[6] || (_cache[6] = $event => paramsChanged('firstCurveSpace'))
|
|
13691
|
+
}, null, 8
|
|
13692
|
+
/* PROPS */
|
|
13693
|
+
, ["modelValue", "min", "max"])]),
|
|
13694
|
+
_: 1
|
|
13695
|
+
/* STABLE */
|
|
13696
|
+
|
|
13697
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
13698
|
+
span: 8
|
|
13699
|
+
}, {
|
|
13700
|
+
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, {
|
|
13701
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing,
|
|
13702
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing = $event),
|
|
13703
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minSpaceing,
|
|
13704
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxSpaceing,
|
|
13705
|
+
step: 10,
|
|
13706
|
+
onInput: _cache[8] || (_cache[8] = $event => paramsChanged('firstCurveSpace')),
|
|
13707
|
+
"controls-position": "right"
|
|
13708
|
+
}, null, 8
|
|
13709
|
+
/* PROPS */
|
|
13710
|
+
, ["modelValue", "min", "max"])]),
|
|
13711
|
+
_: 1
|
|
13712
|
+
/* STABLE */
|
|
13713
|
+
|
|
13714
|
+
})]),
|
|
13715
|
+
_: 1
|
|
13716
|
+
/* STABLE */
|
|
13717
|
+
|
|
13718
|
+
})]),
|
|
13719
|
+
_: 1
|
|
13720
|
+
/* STABLE */
|
|
13721
|
+
|
|
13722
|
+
}, 8
|
|
13723
|
+
/* PROPS */
|
|
13724
|
+
, ["label"])]),
|
|
13725
|
+
_: 1
|
|
13726
|
+
/* STABLE */
|
|
13727
|
+
|
|
13728
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
13623
13729
|
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, {
|
|
13624
13730
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).firstCurveWidth
|
|
13625
13731
|
}, {
|
|
@@ -13633,11 +13739,11 @@ const __default__ = {
|
|
|
13633
13739
|
}, {
|
|
13634
13740
|
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, {
|
|
13635
13741
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
13636
|
-
"onUpdate:modelValue": _cache[
|
|
13742
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
13637
13743
|
step: 0.1,
|
|
13638
13744
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
13639
13745
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
13640
|
-
onInput: _cache[
|
|
13746
|
+
onInput: _cache[10] || (_cache[10] = $event => paramsChanged('firstCurveWidth'))
|
|
13641
13747
|
}, null, 8
|
|
13642
13748
|
/* PROPS */
|
|
13643
13749
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -13649,11 +13755,11 @@ const __default__ = {
|
|
|
13649
13755
|
}, {
|
|
13650
13756
|
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, {
|
|
13651
13757
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
13652
|
-
"onUpdate:modelValue": _cache[
|
|
13758
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
13653
13759
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
13654
13760
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
13655
13761
|
step: 0.1,
|
|
13656
|
-
onInput: _cache[
|
|
13762
|
+
onInput: _cache[12] || (_cache[12] = $event => paramsChanged('firstCurveWidth')),
|
|
13657
13763
|
"controls-position": "right"
|
|
13658
13764
|
}, null, 8
|
|
13659
13765
|
/* PROPS */
|
|
@@ -13681,8 +13787,8 @@ const __default__ = {
|
|
|
13681
13787
|
}, {
|
|
13682
13788
|
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, {
|
|
13683
13789
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveColor,
|
|
13684
|
-
"onUpdate:modelValue": _cache[
|
|
13685
|
-
onChange: _cache[
|
|
13790
|
+
"onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveColor = $event),
|
|
13791
|
+
onChange: _cache[14] || (_cache[14] = $event => paramsChanged('firstCurveColor'))
|
|
13686
13792
|
}, null, 8
|
|
13687
13793
|
/* PROPS */
|
|
13688
13794
|
, ["modelValue"])]),
|
|
@@ -13703,8 +13809,8 @@ const __default__ = {
|
|
|
13703
13809
|
}, {
|
|
13704
13810
|
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, {
|
|
13705
13811
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurve,
|
|
13706
|
-
"onUpdate:modelValue": _cache[
|
|
13707
|
-
onChange: _cache[
|
|
13812
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurve = $event),
|
|
13813
|
+
onChange: _cache[16] || (_cache[16] = $event => paramsChanged('rememberCurve'))
|
|
13708
13814
|
}, null, 8
|
|
13709
13815
|
/* PROPS */
|
|
13710
13816
|
, ["modelValue"])]),
|
|
@@ -13731,11 +13837,11 @@ const __default__ = {
|
|
|
13731
13837
|
}, {
|
|
13732
13838
|
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, {
|
|
13733
13839
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
13734
|
-
"onUpdate:modelValue": _cache[
|
|
13840
|
+
"onUpdate:modelValue": _cache[17] || (_cache[17] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
13735
13841
|
step: 0.1,
|
|
13736
13842
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
13737
13843
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
13738
|
-
onInput: _cache[
|
|
13844
|
+
onInput: _cache[18] || (_cache[18] = $event => paramsChanged('rememberCurveWidth'))
|
|
13739
13845
|
}, null, 8
|
|
13740
13846
|
/* PROPS */
|
|
13741
13847
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -13747,11 +13853,11 @@ const __default__ = {
|
|
|
13747
13853
|
}, {
|
|
13748
13854
|
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, {
|
|
13749
13855
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
13750
|
-
"onUpdate:modelValue": _cache[
|
|
13856
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
13751
13857
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
13752
13858
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
13753
13859
|
step: 0.1,
|
|
13754
|
-
onInput: _cache[
|
|
13860
|
+
onInput: _cache[20] || (_cache[20] = $event => paramsChanged('rememberCurveWidth')),
|
|
13755
13861
|
"controls-position": "right"
|
|
13756
13862
|
}, null, 8
|
|
13757
13863
|
/* PROPS */
|
|
@@ -13779,8 +13885,8 @@ const __default__ = {
|
|
|
13779
13885
|
}, {
|
|
13780
13886
|
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, {
|
|
13781
13887
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveColor,
|
|
13782
|
-
"onUpdate:modelValue": _cache[
|
|
13783
|
-
onChange: _cache[
|
|
13888
|
+
"onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveColor = $event),
|
|
13889
|
+
onChange: _cache[22] || (_cache[22] = $event => paramsChanged('rememberCurveColor'))
|
|
13784
13890
|
}, null, 8
|
|
13785
13891
|
/* PROPS */
|
|
13786
13892
|
, ["modelValue"])]),
|
|
@@ -13801,8 +13907,8 @@ const __default__ = {
|
|
|
13801
13907
|
}, {
|
|
13802
13908
|
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, {
|
|
13803
13909
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurve,
|
|
13804
|
-
"onUpdate:modelValue": _cache[
|
|
13805
|
-
onChange: _cache[
|
|
13910
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurve = $event),
|
|
13911
|
+
onChange: _cache[24] || (_cache[24] = $event => paramsChanged('intervalCurve'))
|
|
13806
13912
|
}, null, 8
|
|
13807
13913
|
/* PROPS */
|
|
13808
13914
|
, ["modelValue"])]),
|
|
@@ -13829,11 +13935,11 @@ const __default__ = {
|
|
|
13829
13935
|
}, {
|
|
13830
13936
|
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, {
|
|
13831
13937
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
13832
|
-
"onUpdate:modelValue": _cache[
|
|
13938
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
13833
13939
|
step: 0.1,
|
|
13834
13940
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
13835
13941
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
13836
|
-
onInput: _cache[
|
|
13942
|
+
onInput: _cache[26] || (_cache[26] = $event => paramsChanged('intervalCurveWidth'))
|
|
13837
13943
|
}, null, 8
|
|
13838
13944
|
/* PROPS */
|
|
13839
13945
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -13845,11 +13951,11 @@ const __default__ = {
|
|
|
13845
13951
|
}, {
|
|
13846
13952
|
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, {
|
|
13847
13953
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
13848
|
-
"onUpdate:modelValue": _cache[
|
|
13954
|
+
"onUpdate:modelValue": _cache[27] || (_cache[27] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
13849
13955
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
13850
13956
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
13851
13957
|
step: 0.1,
|
|
13852
|
-
onInput: _cache[
|
|
13958
|
+
onInput: _cache[28] || (_cache[28] = $event => paramsChanged('intervalCurveWidth')),
|
|
13853
13959
|
"controls-position": "right"
|
|
13854
13960
|
}, null, 8
|
|
13855
13961
|
/* PROPS */
|
|
@@ -13877,8 +13983,8 @@ const __default__ = {
|
|
|
13877
13983
|
}, {
|
|
13878
13984
|
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, {
|
|
13879
13985
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveColor,
|
|
13880
|
-
"onUpdate:modelValue": _cache[
|
|
13881
|
-
onChange: _cache[
|
|
13986
|
+
"onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveColor = $event),
|
|
13987
|
+
onChange: _cache[30] || (_cache[30] = $event => paramsChanged('intervalCurveColor'))
|
|
13882
13988
|
}, null, 8
|
|
13883
13989
|
/* PROPS */
|
|
13884
13990
|
, ["modelValue"])]),
|
|
@@ -13899,8 +14005,8 @@ const __default__ = {
|
|
|
13899
14005
|
}, {
|
|
13900
14006
|
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, {
|
|
13901
14007
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurve,
|
|
13902
|
-
"onUpdate:modelValue": _cache[
|
|
13903
|
-
onChange: _cache[
|
|
14008
|
+
"onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurve = $event),
|
|
14009
|
+
onChange: _cache[32] || (_cache[32] = $event => paramsChanged('extraCurve'))
|
|
13904
14010
|
}, null, 8
|
|
13905
14011
|
/* PROPS */
|
|
13906
14012
|
, ["modelValue"])]),
|
|
@@ -13927,11 +14033,11 @@ const __default__ = {
|
|
|
13927
14033
|
}, {
|
|
13928
14034
|
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, {
|
|
13929
14035
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
13930
|
-
"onUpdate:modelValue": _cache[
|
|
14036
|
+
"onUpdate:modelValue": _cache[33] || (_cache[33] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
13931
14037
|
step: 0.1,
|
|
13932
14038
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
13933
14039
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
13934
|
-
onInput: _cache[
|
|
14040
|
+
onInput: _cache[34] || (_cache[34] = $event => paramsChanged('extraCurveWidth'))
|
|
13935
14041
|
}, null, 8
|
|
13936
14042
|
/* PROPS */
|
|
13937
14043
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -13943,11 +14049,11 @@ const __default__ = {
|
|
|
13943
14049
|
}, {
|
|
13944
14050
|
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, {
|
|
13945
14051
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
13946
|
-
"onUpdate:modelValue": _cache[
|
|
14052
|
+
"onUpdate:modelValue": _cache[35] || (_cache[35] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
13947
14053
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
13948
14054
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
13949
14055
|
step: 0.1,
|
|
13950
|
-
onInput: _cache[
|
|
14056
|
+
onInput: _cache[36] || (_cache[36] = $event => paramsChanged('extraCurveWidth')),
|
|
13951
14057
|
"controls-position": "right"
|
|
13952
14058
|
}, null, 8
|
|
13953
14059
|
/* PROPS */
|
|
@@ -13975,8 +14081,8 @@ const __default__ = {
|
|
|
13975
14081
|
}, {
|
|
13976
14082
|
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, {
|
|
13977
14083
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveColor,
|
|
13978
|
-
"onUpdate:modelValue": _cache[
|
|
13979
|
-
onChange: _cache[
|
|
14084
|
+
"onUpdate:modelValue": _cache[37] || (_cache[37] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveColor = $event),
|
|
14085
|
+
onChange: _cache[38] || (_cache[38] = $event => paramsChanged('extraCurveColor'))
|
|
13980
14086
|
}, null, 8
|
|
13981
14087
|
/* PROPS */
|
|
13982
14088
|
, ["modelValue"])]),
|
|
@@ -14012,7 +14118,7 @@ const __default__ = {
|
|
|
14012
14118
|
}, {
|
|
14013
14119
|
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, {
|
|
14014
14120
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle,
|
|
14015
|
-
"onUpdate:modelValue": _cache[
|
|
14121
|
+
"onUpdate:modelValue": _cache[39] || (_cache[39] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle = $event),
|
|
14016
14122
|
onChange: onChangeFillStyle
|
|
14017
14123
|
}, {
|
|
14018
14124
|
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, {
|
|
@@ -14055,11 +14161,11 @@ const __default__ = {
|
|
|
14055
14161
|
}, {
|
|
14056
14162
|
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, {
|
|
14057
14163
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha,
|
|
14058
|
-
"onUpdate:modelValue": _cache[
|
|
14164
|
+
"onUpdate:modelValue": _cache[40] || (_cache[40] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha = $event),
|
|
14059
14165
|
min: 0,
|
|
14060
14166
|
max: 1,
|
|
14061
14167
|
step: 0.01,
|
|
14062
|
-
onInput: _cache[
|
|
14168
|
+
onInput: _cache[41] || (_cache[41] = $event => paramsChanged('alpha'))
|
|
14063
14169
|
}, null, 8
|
|
14064
14170
|
/* PROPS */
|
|
14065
14171
|
, ["modelValue", "step"])]),
|
|
@@ -14071,12 +14177,12 @@ const __default__ = {
|
|
|
14071
14177
|
}, {
|
|
14072
14178
|
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, {
|
|
14073
14179
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha,
|
|
14074
|
-
"onUpdate:modelValue": _cache[
|
|
14180
|
+
"onUpdate:modelValue": _cache[42] || (_cache[42] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha = $event),
|
|
14075
14181
|
min: 0,
|
|
14076
14182
|
max: 1,
|
|
14077
14183
|
step: 0.01,
|
|
14078
14184
|
"controls-position": "right",
|
|
14079
|
-
onInput: _cache[
|
|
14185
|
+
onInput: _cache[43] || (_cache[43] = $event => paramsChanged('alpha'))
|
|
14080
14186
|
}, null, 8
|
|
14081
14187
|
/* PROPS */
|
|
14082
14188
|
, ["modelValue", "step"])]),
|
|
@@ -14111,11 +14217,11 @@ const __default__ = {
|
|
|
14111
14217
|
}, {
|
|
14112
14218
|
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, {
|
|
14113
14219
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
14114
|
-
"onUpdate:modelValue": _cache[
|
|
14220
|
+
"onUpdate:modelValue": _cache[44] || (_cache[44] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight = $event),
|
|
14115
14221
|
min: 0,
|
|
14116
14222
|
step: 100,
|
|
14117
14223
|
max: 8000,
|
|
14118
|
-
onInput: _cache[
|
|
14224
|
+
onInput: _cache[45] || (_cache[45] = $event => paramsChanged('minHeight'))
|
|
14119
14225
|
}, null, 8
|
|
14120
14226
|
/* PROPS */
|
|
14121
14227
|
, ["modelValue"])]),
|
|
@@ -14127,12 +14233,12 @@ const __default__ = {
|
|
|
14127
14233
|
}, {
|
|
14128
14234
|
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, {
|
|
14129
14235
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
14130
|
-
"onUpdate:modelValue": _cache[
|
|
14236
|
+
"onUpdate:modelValue": _cache[46] || (_cache[46] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight = $event),
|
|
14131
14237
|
min: 0,
|
|
14132
14238
|
step: 100,
|
|
14133
14239
|
max: 8000,
|
|
14134
14240
|
"controls-position": "right",
|
|
14135
|
-
onInput: _cache[
|
|
14241
|
+
onInput: _cache[47] || (_cache[47] = $event => paramsChanged('minHeight'))
|
|
14136
14242
|
}, null, 8
|
|
14137
14243
|
/* PROPS */
|
|
14138
14244
|
, ["modelValue"])]),
|
|
@@ -14167,11 +14273,11 @@ const __default__ = {
|
|
|
14167
14273
|
}, {
|
|
14168
14274
|
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, {
|
|
14169
14275
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
14170
|
-
"onUpdate:modelValue": _cache[
|
|
14276
|
+
"onUpdate:modelValue": _cache[48] || (_cache[48] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight = $event),
|
|
14171
14277
|
min: 0,
|
|
14172
14278
|
step: 100,
|
|
14173
14279
|
max: 8000,
|
|
14174
|
-
onInput: _cache[
|
|
14280
|
+
onInput: _cache[49] || (_cache[49] = $event => paramsChanged('maxHeight'))
|
|
14175
14281
|
}, null, 8
|
|
14176
14282
|
/* PROPS */
|
|
14177
14283
|
, ["modelValue"])]),
|
|
@@ -14183,12 +14289,12 @@ const __default__ = {
|
|
|
14183
14289
|
}, {
|
|
14184
14290
|
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, {
|
|
14185
14291
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
14186
|
-
"onUpdate:modelValue": _cache[
|
|
14292
|
+
"onUpdate:modelValue": _cache[50] || (_cache[50] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight = $event),
|
|
14187
14293
|
min: 0,
|
|
14188
14294
|
step: 100,
|
|
14189
14295
|
max: 8000,
|
|
14190
14296
|
"controls-position": "right",
|
|
14191
|
-
onInput: _cache[
|
|
14297
|
+
onInput: _cache[51] || (_cache[51] = $event => paramsChanged('maxHeight'))
|
|
14192
14298
|
}, null, 8
|
|
14193
14299
|
/* PROPS */
|
|
14194
14300
|
, ["modelValue"])]),
|
|
@@ -14253,7 +14359,7 @@ const __default__ = {
|
|
|
14253
14359
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight,
|
|
14254
14360
|
"onUpdate:modelValue": $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight = $event,
|
|
14255
14361
|
disabled: true,
|
|
14256
|
-
onInput: _cache[
|
|
14362
|
+
onInput: _cache[52] || (_cache[52] = $event => paramsChanged('colorTableHeight')),
|
|
14257
14363
|
"controls-position": "right"
|
|
14258
14364
|
}, null, 8
|
|
14259
14365
|
/* PROPS */
|
|
@@ -14263,7 +14369,7 @@ const __default__ = {
|
|
|
14263
14369
|
"onUpdate:modelValue": $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight = $event,
|
|
14264
14370
|
disabled: true,
|
|
14265
14371
|
step: 1,
|
|
14266
|
-
onInput: _cache[
|
|
14372
|
+
onInput: _cache[53] || (_cache[53] = $event => paramsChanged('colorTableHeight')),
|
|
14267
14373
|
"controls-position": "right"
|
|
14268
14374
|
}, null, 8
|
|
14269
14375
|
/* PROPS */
|
|
@@ -14276,7 +14382,7 @@ const __default__ = {
|
|
|
14276
14382
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight,
|
|
14277
14383
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index + 1].colorTableHeight,
|
|
14278
14384
|
step: 1,
|
|
14279
|
-
onInput: _cache[
|
|
14385
|
+
onInput: _cache[54] || (_cache[54] = $event => paramsChanged('colorTableHeight')),
|
|
14280
14386
|
"controls-position": "right"
|
|
14281
14387
|
}, null, 8
|
|
14282
14388
|
/* PROPS */
|
|
@@ -14286,7 +14392,7 @@ const __default__ = {
|
|
|
14286
14392
|
"onUpdate:modelValue": $event => item.colorTableHeight = $event,
|
|
14287
14393
|
step: 1,
|
|
14288
14394
|
disabled: true,
|
|
14289
|
-
onInput: _cache[
|
|
14395
|
+
onInput: _cache[55] || (_cache[55] = $event => paramsChanged('colorTableHeight')),
|
|
14290
14396
|
"controls-position": "right"
|
|
14291
14397
|
}, null, 8
|
|
14292
14398
|
/* PROPS */
|
|
@@ -14302,7 +14408,7 @@ const __default__ = {
|
|
|
14302
14408
|
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, {
|
|
14303
14409
|
modelValue: item.colorTable,
|
|
14304
14410
|
"onUpdate:modelValue": $event => item.colorTable = $event,
|
|
14305
|
-
onChange: _cache[
|
|
14411
|
+
onChange: _cache[56] || (_cache[56] = $event => paramsChanged('colorTable'))
|
|
14306
14412
|
}, null, 8
|
|
14307
14413
|
/* PROPS */
|
|
14308
14414
|
, ["modelValue", "onUpdate:modelValue"])]),
|
|
@@ -14341,8 +14447,8 @@ const __default__ = {
|
|
|
14341
14447
|
|
|
14342
14448
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio_group, {
|
|
14343
14449
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorImage,
|
|
14344
|
-
"onUpdate:modelValue": _cache[
|
|
14345
|
-
onChange: _cache[
|
|
14450
|
+
"onUpdate:modelValue": _cache[57] || (_cache[57] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorImage = $event),
|
|
14451
|
+
onChange: _cache[58] || (_cache[58] = $event => paramsChanged('image'))
|
|
14346
14452
|
}, {
|
|
14347
14453
|
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) => {
|
|
14348
14454
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
|
|
@@ -14387,7 +14493,7 @@ const __default__ = {
|
|
|
14387
14493
|
})) : (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, {
|
|
14388
14494
|
key: 2,
|
|
14389
14495
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(activeName),
|
|
14390
|
-
"onUpdate:modelValue": _cache[
|
|
14496
|
+
"onUpdate:modelValue": _cache[117] || (_cache[117] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(activeName) ? activeName.value = $event : activeName = $event),
|
|
14391
14497
|
onTabChange: _ctx.handleChange
|
|
14392
14498
|
}, {
|
|
14393
14499
|
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, {
|
|
@@ -14404,8 +14510,8 @@ const __default__ = {
|
|
|
14404
14510
|
}, {
|
|
14405
14511
|
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, {
|
|
14406
14512
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).elevationMarking,
|
|
14407
|
-
"onUpdate:modelValue": _cache[
|
|
14408
|
-
onChange: _cache[
|
|
14513
|
+
"onUpdate:modelValue": _cache[59] || (_cache[59] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).elevationMarking = $event),
|
|
14514
|
+
onChange: _cache[60] || (_cache[60] = $event => paramsChanged('elevationMarking'))
|
|
14409
14515
|
}, null, 8
|
|
14410
14516
|
/* PROPS */
|
|
14411
14517
|
, ["modelValue"])]),
|
|
@@ -14424,8 +14530,8 @@ const __default__ = {
|
|
|
14424
14530
|
}, {
|
|
14425
14531
|
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, {
|
|
14426
14532
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurve,
|
|
14427
|
-
"onUpdate:modelValue": _cache[
|
|
14428
|
-
onChange: _cache[
|
|
14533
|
+
"onUpdate:modelValue": _cache[61] || (_cache[61] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurve = $event),
|
|
14534
|
+
onChange: _cache[62] || (_cache[62] = $event => paramsChanged('firstCurve'))
|
|
14429
14535
|
}, null, 8
|
|
14430
14536
|
/* PROPS */
|
|
14431
14537
|
, ["modelValue"])]),
|
|
@@ -14439,6 +14545,62 @@ const __default__ = {
|
|
|
14439
14545
|
/* STABLE */
|
|
14440
14546
|
|
|
14441
14547
|
}), (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, {
|
|
14548
|
+
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, {
|
|
14549
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).firstCurveSpace
|
|
14550
|
+
}, {
|
|
14551
|
+
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, {
|
|
14552
|
+
style: {
|
|
14553
|
+
"display": "flex"
|
|
14554
|
+
}
|
|
14555
|
+
}, {
|
|
14556
|
+
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, {
|
|
14557
|
+
span: 16
|
|
14558
|
+
}, {
|
|
14559
|
+
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, {
|
|
14560
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing,
|
|
14561
|
+
"onUpdate:modelValue": _cache[63] || (_cache[63] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing = $event),
|
|
14562
|
+
step: 10,
|
|
14563
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minSpaceing,
|
|
14564
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxSpaceing,
|
|
14565
|
+
onInput: _cache[64] || (_cache[64] = $event => paramsChanged('firstCurveSpace'))
|
|
14566
|
+
}, null, 8
|
|
14567
|
+
/* PROPS */
|
|
14568
|
+
, ["modelValue", "min", "max"])]),
|
|
14569
|
+
_: 1
|
|
14570
|
+
/* STABLE */
|
|
14571
|
+
|
|
14572
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
14573
|
+
span: 8
|
|
14574
|
+
}, {
|
|
14575
|
+
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, {
|
|
14576
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing,
|
|
14577
|
+
"onUpdate:modelValue": _cache[65] || (_cache[65] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).spaceing = $event),
|
|
14578
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minSpaceing,
|
|
14579
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxSpaceing,
|
|
14580
|
+
step: 10,
|
|
14581
|
+
onInput: _cache[66] || (_cache[66] = $event => paramsChanged('firstCurveSpace')),
|
|
14582
|
+
"controls-position": "right"
|
|
14583
|
+
}, null, 8
|
|
14584
|
+
/* PROPS */
|
|
14585
|
+
, ["modelValue", "min", "max"])]),
|
|
14586
|
+
_: 1
|
|
14587
|
+
/* STABLE */
|
|
14588
|
+
|
|
14589
|
+
})]),
|
|
14590
|
+
_: 1
|
|
14591
|
+
/* STABLE */
|
|
14592
|
+
|
|
14593
|
+
})]),
|
|
14594
|
+
_: 1
|
|
14595
|
+
/* STABLE */
|
|
14596
|
+
|
|
14597
|
+
}, 8
|
|
14598
|
+
/* PROPS */
|
|
14599
|
+
, ["label"])]),
|
|
14600
|
+
_: 1
|
|
14601
|
+
/* STABLE */
|
|
14602
|
+
|
|
14603
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
14442
14604
|
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, {
|
|
14443
14605
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).firstCurveWidth
|
|
14444
14606
|
}, {
|
|
@@ -14452,11 +14614,11 @@ const __default__ = {
|
|
|
14452
14614
|
}, {
|
|
14453
14615
|
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, {
|
|
14454
14616
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
14455
|
-
"onUpdate:modelValue": _cache[
|
|
14617
|
+
"onUpdate:modelValue": _cache[67] || (_cache[67] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
14456
14618
|
step: 0.1,
|
|
14457
14619
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
14458
14620
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
14459
|
-
onInput: _cache[
|
|
14621
|
+
onInput: _cache[68] || (_cache[68] = $event => paramsChanged('firstCurveWidth'))
|
|
14460
14622
|
}, null, 8
|
|
14461
14623
|
/* PROPS */
|
|
14462
14624
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -14468,11 +14630,11 @@ const __default__ = {
|
|
|
14468
14630
|
}, {
|
|
14469
14631
|
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, {
|
|
14470
14632
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
14471
|
-
"onUpdate:modelValue": _cache[
|
|
14633
|
+
"onUpdate:modelValue": _cache[69] || (_cache[69] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
14472
14634
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
14473
14635
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
14474
14636
|
step: 0.1,
|
|
14475
|
-
onInput: _cache[
|
|
14637
|
+
onInput: _cache[70] || (_cache[70] = $event => paramsChanged('firstCurveWidth')),
|
|
14476
14638
|
"controls-position": "right"
|
|
14477
14639
|
}, null, 8
|
|
14478
14640
|
/* PROPS */
|
|
@@ -14500,8 +14662,8 @@ const __default__ = {
|
|
|
14500
14662
|
}, {
|
|
14501
14663
|
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, {
|
|
14502
14664
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveColor,
|
|
14503
|
-
"onUpdate:modelValue": _cache[
|
|
14504
|
-
onChange: _cache[
|
|
14665
|
+
"onUpdate:modelValue": _cache[71] || (_cache[71] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveColor = $event),
|
|
14666
|
+
onChange: _cache[72] || (_cache[72] = $event => paramsChanged('firstCurveColor'))
|
|
14505
14667
|
}, null, 8
|
|
14506
14668
|
/* PROPS */
|
|
14507
14669
|
, ["modelValue"])]),
|
|
@@ -14522,8 +14684,8 @@ const __default__ = {
|
|
|
14522
14684
|
}, {
|
|
14523
14685
|
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, {
|
|
14524
14686
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurve,
|
|
14525
|
-
"onUpdate:modelValue": _cache[
|
|
14526
|
-
onChange: _cache[
|
|
14687
|
+
"onUpdate:modelValue": _cache[73] || (_cache[73] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurve = $event),
|
|
14688
|
+
onChange: _cache[74] || (_cache[74] = $event => paramsChanged('rememberCurve'))
|
|
14527
14689
|
}, null, 8
|
|
14528
14690
|
/* PROPS */
|
|
14529
14691
|
, ["modelValue"])]),
|
|
@@ -14550,11 +14712,11 @@ const __default__ = {
|
|
|
14550
14712
|
}, {
|
|
14551
14713
|
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, {
|
|
14552
14714
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
14553
|
-
"onUpdate:modelValue": _cache[
|
|
14715
|
+
"onUpdate:modelValue": _cache[75] || (_cache[75] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
14554
14716
|
step: 0.1,
|
|
14555
14717
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
14556
14718
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
14557
|
-
onInput: _cache[
|
|
14719
|
+
onInput: _cache[76] || (_cache[76] = $event => paramsChanged('rememberCurveWidth'))
|
|
14558
14720
|
}, null, 8
|
|
14559
14721
|
/* PROPS */
|
|
14560
14722
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -14566,11 +14728,11 @@ const __default__ = {
|
|
|
14566
14728
|
}, {
|
|
14567
14729
|
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, {
|
|
14568
14730
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
14569
|
-
"onUpdate:modelValue": _cache[
|
|
14731
|
+
"onUpdate:modelValue": _cache[77] || (_cache[77] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
14570
14732
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
14571
14733
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
14572
14734
|
step: 0.1,
|
|
14573
|
-
onInput: _cache[
|
|
14735
|
+
onInput: _cache[78] || (_cache[78] = $event => paramsChanged('rememberCurveWidth')),
|
|
14574
14736
|
"controls-position": "right"
|
|
14575
14737
|
}, null, 8
|
|
14576
14738
|
/* PROPS */
|
|
@@ -14598,8 +14760,8 @@ const __default__ = {
|
|
|
14598
14760
|
}, {
|
|
14599
14761
|
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, {
|
|
14600
14762
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveColor,
|
|
14601
|
-
"onUpdate:modelValue": _cache[
|
|
14602
|
-
onChange: _cache[
|
|
14763
|
+
"onUpdate:modelValue": _cache[79] || (_cache[79] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveColor = $event),
|
|
14764
|
+
onChange: _cache[80] || (_cache[80] = $event => paramsChanged('rememberCurveColor'))
|
|
14603
14765
|
}, null, 8
|
|
14604
14766
|
/* PROPS */
|
|
14605
14767
|
, ["modelValue"])]),
|
|
@@ -14620,8 +14782,8 @@ const __default__ = {
|
|
|
14620
14782
|
}, {
|
|
14621
14783
|
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, {
|
|
14622
14784
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurve,
|
|
14623
|
-
"onUpdate:modelValue": _cache[
|
|
14624
|
-
onChange: _cache[
|
|
14785
|
+
"onUpdate:modelValue": _cache[81] || (_cache[81] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurve = $event),
|
|
14786
|
+
onChange: _cache[82] || (_cache[82] = $event => paramsChanged('intervalCurve'))
|
|
14625
14787
|
}, null, 8
|
|
14626
14788
|
/* PROPS */
|
|
14627
14789
|
, ["modelValue"])]),
|
|
@@ -14648,11 +14810,11 @@ const __default__ = {
|
|
|
14648
14810
|
}, {
|
|
14649
14811
|
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, {
|
|
14650
14812
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
14651
|
-
"onUpdate:modelValue": _cache[
|
|
14813
|
+
"onUpdate:modelValue": _cache[83] || (_cache[83] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
14652
14814
|
step: 0.1,
|
|
14653
14815
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
14654
14816
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
14655
|
-
onInput: _cache[
|
|
14817
|
+
onInput: _cache[84] || (_cache[84] = $event => paramsChanged('intervalCurveWidth'))
|
|
14656
14818
|
}, null, 8
|
|
14657
14819
|
/* PROPS */
|
|
14658
14820
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -14664,11 +14826,11 @@ const __default__ = {
|
|
|
14664
14826
|
}, {
|
|
14665
14827
|
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, {
|
|
14666
14828
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
14667
|
-
"onUpdate:modelValue": _cache[
|
|
14829
|
+
"onUpdate:modelValue": _cache[85] || (_cache[85] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
14668
14830
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
14669
14831
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
14670
14832
|
step: 0.1,
|
|
14671
|
-
onInput: _cache[
|
|
14833
|
+
onInput: _cache[86] || (_cache[86] = $event => paramsChanged('intervalCurveWidth')),
|
|
14672
14834
|
"controls-position": "right"
|
|
14673
14835
|
}, null, 8
|
|
14674
14836
|
/* PROPS */
|
|
@@ -14696,8 +14858,8 @@ const __default__ = {
|
|
|
14696
14858
|
}, {
|
|
14697
14859
|
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, {
|
|
14698
14860
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveColor,
|
|
14699
|
-
"onUpdate:modelValue": _cache[
|
|
14700
|
-
onChange: _cache[
|
|
14861
|
+
"onUpdate:modelValue": _cache[87] || (_cache[87] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveColor = $event),
|
|
14862
|
+
onChange: _cache[88] || (_cache[88] = $event => paramsChanged('intervalCurveColor'))
|
|
14701
14863
|
}, null, 8
|
|
14702
14864
|
/* PROPS */
|
|
14703
14865
|
, ["modelValue"])]),
|
|
@@ -14718,8 +14880,8 @@ const __default__ = {
|
|
|
14718
14880
|
}, {
|
|
14719
14881
|
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, {
|
|
14720
14882
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurve,
|
|
14721
|
-
"onUpdate:modelValue": _cache[
|
|
14722
|
-
onChange: _cache[
|
|
14883
|
+
"onUpdate:modelValue": _cache[89] || (_cache[89] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurve = $event),
|
|
14884
|
+
onChange: _cache[90] || (_cache[90] = $event => paramsChanged('extraCurve'))
|
|
14723
14885
|
}, null, 8
|
|
14724
14886
|
/* PROPS */
|
|
14725
14887
|
, ["modelValue"])]),
|
|
@@ -14746,11 +14908,11 @@ const __default__ = {
|
|
|
14746
14908
|
}, {
|
|
14747
14909
|
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, {
|
|
14748
14910
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
14749
|
-
"onUpdate:modelValue": _cache[
|
|
14911
|
+
"onUpdate:modelValue": _cache[91] || (_cache[91] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
14750
14912
|
step: 0.1,
|
|
14751
14913
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
14752
14914
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
14753
|
-
onInput: _cache[
|
|
14915
|
+
onInput: _cache[92] || (_cache[92] = $event => paramsChanged('extraCurveWidth'))
|
|
14754
14916
|
}, null, 8
|
|
14755
14917
|
/* PROPS */
|
|
14756
14918
|
, ["modelValue", "step", "min", "max"])]),
|
|
@@ -14762,11 +14924,11 @@ const __default__ = {
|
|
|
14762
14924
|
}, {
|
|
14763
14925
|
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, {
|
|
14764
14926
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
14765
|
-
"onUpdate:modelValue": _cache[
|
|
14927
|
+
"onUpdate:modelValue": _cache[93] || (_cache[93] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
14766
14928
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
14767
14929
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
14768
14930
|
step: 0.1,
|
|
14769
|
-
onInput: _cache[
|
|
14931
|
+
onInput: _cache[94] || (_cache[94] = $event => paramsChanged('extraCurveWidth')),
|
|
14770
14932
|
"controls-position": "right"
|
|
14771
14933
|
}, null, 8
|
|
14772
14934
|
/* PROPS */
|
|
@@ -14794,8 +14956,8 @@ const __default__ = {
|
|
|
14794
14956
|
}, {
|
|
14795
14957
|
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, {
|
|
14796
14958
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveColor,
|
|
14797
|
-
"onUpdate:modelValue": _cache[
|
|
14798
|
-
onChange: _cache[
|
|
14959
|
+
"onUpdate:modelValue": _cache[95] || (_cache[95] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveColor = $event),
|
|
14960
|
+
onChange: _cache[96] || (_cache[96] = $event => paramsChanged('extraCurveColor'))
|
|
14799
14961
|
}, null, 8
|
|
14800
14962
|
/* PROPS */
|
|
14801
14963
|
, ["modelValue"])]),
|
|
@@ -14840,7 +15002,7 @@ const __default__ = {
|
|
|
14840
15002
|
}, {
|
|
14841
15003
|
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, {
|
|
14842
15004
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle,
|
|
14843
|
-
"onUpdate:modelValue": _cache[
|
|
15005
|
+
"onUpdate:modelValue": _cache[97] || (_cache[97] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle = $event),
|
|
14844
15006
|
onChange: onChangeFillStyle
|
|
14845
15007
|
}, {
|
|
14846
15008
|
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, {
|
|
@@ -14883,11 +15045,11 @@ const __default__ = {
|
|
|
14883
15045
|
}, {
|
|
14884
15046
|
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, {
|
|
14885
15047
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha,
|
|
14886
|
-
"onUpdate:modelValue": _cache[
|
|
15048
|
+
"onUpdate:modelValue": _cache[98] || (_cache[98] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha = $event),
|
|
14887
15049
|
min: 0,
|
|
14888
15050
|
max: 1,
|
|
14889
15051
|
step: 0.01,
|
|
14890
|
-
onInput: _cache[
|
|
15052
|
+
onInput: _cache[99] || (_cache[99] = $event => paramsChanged('alpha'))
|
|
14891
15053
|
}, null, 8
|
|
14892
15054
|
/* PROPS */
|
|
14893
15055
|
, ["modelValue", "step"])]),
|
|
@@ -14899,12 +15061,12 @@ const __default__ = {
|
|
|
14899
15061
|
}, {
|
|
14900
15062
|
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, {
|
|
14901
15063
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha,
|
|
14902
|
-
"onUpdate:modelValue": _cache[
|
|
15064
|
+
"onUpdate:modelValue": _cache[100] || (_cache[100] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).surfaceAlpha = $event),
|
|
14903
15065
|
min: 0,
|
|
14904
15066
|
max: 1,
|
|
14905
15067
|
step: 0.01,
|
|
14906
15068
|
"controls-position": "right",
|
|
14907
|
-
onInput: _cache[
|
|
15069
|
+
onInput: _cache[101] || (_cache[101] = $event => paramsChanged('alpha'))
|
|
14908
15070
|
}, null, 8
|
|
14909
15071
|
/* PROPS */
|
|
14910
15072
|
, ["modelValue", "step"])]),
|
|
@@ -14939,11 +15101,11 @@ const __default__ = {
|
|
|
14939
15101
|
}, {
|
|
14940
15102
|
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, {
|
|
14941
15103
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
14942
|
-
"onUpdate:modelValue": _cache[
|
|
15104
|
+
"onUpdate:modelValue": _cache[102] || (_cache[102] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight = $event),
|
|
14943
15105
|
min: 0,
|
|
14944
15106
|
step: 100,
|
|
14945
15107
|
max: 8000,
|
|
14946
|
-
onInput: _cache[
|
|
15108
|
+
onInput: _cache[103] || (_cache[103] = $event => paramsChanged('minHeight'))
|
|
14947
15109
|
}, null, 8
|
|
14948
15110
|
/* PROPS */
|
|
14949
15111
|
, ["modelValue"])]),
|
|
@@ -14955,12 +15117,12 @@ const __default__ = {
|
|
|
14955
15117
|
}, {
|
|
14956
15118
|
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, {
|
|
14957
15119
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
14958
|
-
"onUpdate:modelValue": _cache[
|
|
15120
|
+
"onUpdate:modelValue": _cache[104] || (_cache[104] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight = $event),
|
|
14959
15121
|
min: 0,
|
|
14960
15122
|
step: 100,
|
|
14961
15123
|
max: 8000,
|
|
14962
15124
|
"controls-position": "right",
|
|
14963
|
-
onInput: _cache[
|
|
15125
|
+
onInput: _cache[105] || (_cache[105] = $event => paramsChanged('minHeight'))
|
|
14964
15126
|
}, null, 8
|
|
14965
15127
|
/* PROPS */
|
|
14966
15128
|
, ["modelValue"])]),
|
|
@@ -14995,11 +15157,11 @@ const __default__ = {
|
|
|
14995
15157
|
}, {
|
|
14996
15158
|
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, {
|
|
14997
15159
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
14998
|
-
"onUpdate:modelValue": _cache[
|
|
15160
|
+
"onUpdate:modelValue": _cache[106] || (_cache[106] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight = $event),
|
|
14999
15161
|
min: 0,
|
|
15000
15162
|
step: 100,
|
|
15001
15163
|
max: 8000,
|
|
15002
|
-
onInput: _cache[
|
|
15164
|
+
onInput: _cache[107] || (_cache[107] = $event => paramsChanged('maxHeight'))
|
|
15003
15165
|
}, null, 8
|
|
15004
15166
|
/* PROPS */
|
|
15005
15167
|
, ["modelValue"])]),
|
|
@@ -15011,12 +15173,12 @@ const __default__ = {
|
|
|
15011
15173
|
}, {
|
|
15012
15174
|
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, {
|
|
15013
15175
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
15014
|
-
"onUpdate:modelValue": _cache[
|
|
15176
|
+
"onUpdate:modelValue": _cache[108] || (_cache[108] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight = $event),
|
|
15015
15177
|
min: 0,
|
|
15016
15178
|
step: 100,
|
|
15017
15179
|
max: 8000,
|
|
15018
15180
|
"controls-position": "right",
|
|
15019
|
-
onInput: _cache[
|
|
15181
|
+
onInput: _cache[109] || (_cache[109] = $event => paramsChanged('maxHeight'))
|
|
15020
15182
|
}, null, 8
|
|
15021
15183
|
/* PROPS */
|
|
15022
15184
|
, ["modelValue"])]),
|
|
@@ -15081,7 +15243,7 @@ const __default__ = {
|
|
|
15081
15243
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight,
|
|
15082
15244
|
"onUpdate:modelValue": $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight = $event,
|
|
15083
15245
|
disabled: true,
|
|
15084
|
-
onInput: _cache[
|
|
15246
|
+
onInput: _cache[110] || (_cache[110] = $event => paramsChanged('colorTableHeight')),
|
|
15085
15247
|
"controls-position": "right"
|
|
15086
15248
|
}, null, 8
|
|
15087
15249
|
/* PROPS */
|
|
@@ -15091,7 +15253,7 @@ const __default__ = {
|
|
|
15091
15253
|
"onUpdate:modelValue": $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight = $event,
|
|
15092
15254
|
disabled: true,
|
|
15093
15255
|
step: 1,
|
|
15094
|
-
onInput: _cache[
|
|
15256
|
+
onInput: _cache[111] || (_cache[111] = $event => paramsChanged('colorTableHeight')),
|
|
15095
15257
|
"controls-position": "right"
|
|
15096
15258
|
}, null, 8
|
|
15097
15259
|
/* PROPS */
|
|
@@ -15104,7 +15266,7 @@ const __default__ = {
|
|
|
15104
15266
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index - 1].colorTableHeight,
|
|
15105
15267
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList)[index + 1].colorTableHeight,
|
|
15106
15268
|
step: 1,
|
|
15107
|
-
onInput: _cache[
|
|
15269
|
+
onInput: _cache[112] || (_cache[112] = $event => paramsChanged('colorTableHeight')),
|
|
15108
15270
|
"controls-position": "right"
|
|
15109
15271
|
}, null, 8
|
|
15110
15272
|
/* PROPS */
|
|
@@ -15114,7 +15276,7 @@ const __default__ = {
|
|
|
15114
15276
|
"onUpdate:modelValue": $event => item.colorTableHeight = $event,
|
|
15115
15277
|
step: 1,
|
|
15116
15278
|
disabled: true,
|
|
15117
|
-
onInput: _cache[
|
|
15279
|
+
onInput: _cache[113] || (_cache[113] = $event => paramsChanged('colorTableHeight')),
|
|
15118
15280
|
"controls-position": "right"
|
|
15119
15281
|
}, null, 8
|
|
15120
15282
|
/* PROPS */
|
|
@@ -15130,7 +15292,7 @@ const __default__ = {
|
|
|
15130
15292
|
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, {
|
|
15131
15293
|
modelValue: item.colorTable,
|
|
15132
15294
|
"onUpdate:modelValue": $event => item.colorTable = $event,
|
|
15133
|
-
onChange: _cache[
|
|
15295
|
+
onChange: _cache[114] || (_cache[114] = $event => paramsChanged('colorTable'))
|
|
15134
15296
|
}, null, 8
|
|
15135
15297
|
/* PROPS */
|
|
15136
15298
|
, ["modelValue", "onUpdate:modelValue"])]),
|
|
@@ -15169,8 +15331,8 @@ const __default__ = {
|
|
|
15169
15331
|
|
|
15170
15332
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio_group, {
|
|
15171
15333
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorImage,
|
|
15172
|
-
"onUpdate:modelValue": _cache[
|
|
15173
|
-
onChange: _cache[
|
|
15334
|
+
"onUpdate:modelValue": _cache[115] || (_cache[115] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorImage = $event),
|
|
15335
|
+
onChange: _cache[116] || (_cache[116] = $event => paramsChanged('image'))
|
|
15174
15336
|
}, {
|
|
15175
15337
|
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) => {
|
|
15176
15338
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
|
|
@@ -15237,7 +15399,7 @@ const __default__ = {
|
|
|
15237
15399
|
}, 8
|
|
15238
15400
|
/* PROPS */
|
|
15239
15401
|
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_17, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
15240
|
-
onClick: _cache[
|
|
15402
|
+
onClick: _cache[118] || (_cache[118] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
15241
15403
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startAnalysis,
|
|
15242
15404
|
type: "primary"
|
|
15243
15405
|
}, {
|
|
@@ -15250,7 +15412,7 @@ const __default__ = {
|
|
|
15250
15412
|
}, 8
|
|
15251
15413
|
/* PROPS */
|
|
15252
15414
|
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
15253
|
-
onClick: _cache[
|
|
15415
|
+
onClick: _cache[119] || (_cache[119] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => clearResult(), ["stop"])),
|
|
15254
15416
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clearResult
|
|
15255
15417
|
}, {
|
|
15256
15418
|
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
|
|
@@ -25209,7 +25371,7 @@ ScanEffect.install = (Vue, opts) => {
|
|
|
25209
25371
|
|
|
25210
25372
|
/***/ }),
|
|
25211
25373
|
|
|
25212
|
-
/***/
|
|
25374
|
+
/***/ 5802:
|
|
25213
25375
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
25214
25376
|
|
|
25215
25377
|
"use strict";
|
|
@@ -25667,6 +25829,16 @@ class SceneSetViewModel {
|
|
|
25667
25829
|
|
|
25668
25830
|
setSurfaceTransparency(val) {
|
|
25669
25831
|
this._undergroundManager.transparent = Number(val);
|
|
25832
|
+
} // 设置地形夸张系数
|
|
25833
|
+
|
|
25834
|
+
|
|
25835
|
+
setExaggerationFactor(val) {
|
|
25836
|
+
this._viewer.scene.globe.terrainExaggeration = Number(val);
|
|
25837
|
+
} // 设置地形夸张基准高度
|
|
25838
|
+
|
|
25839
|
+
|
|
25840
|
+
setAltitudeHeight(val) {
|
|
25841
|
+
this._viewer.scene.globe.terrainExaggerationRelativeHeight = Number(val);
|
|
25670
25842
|
} // 销毁
|
|
25671
25843
|
|
|
25672
25844
|
|
|
@@ -25685,6 +25857,8 @@ class SceneSetViewModel {
|
|
|
25685
25857
|
this._removeChangedEvent = null;
|
|
25686
25858
|
this.setSkyBoxStyle("default");
|
|
25687
25859
|
this._viewer.scene.skyBox = this._defaultSkyBox;
|
|
25860
|
+
this._viewer.scene.globe.terrainExaggeration = 1.0;
|
|
25861
|
+
this._viewer.scene.globe.terrainExaggerationRelativeHeight = 0;
|
|
25688
25862
|
}
|
|
25689
25863
|
|
|
25690
25864
|
}
|
|
@@ -25777,6 +25951,13 @@ const __default__ = {
|
|
|
25777
25951
|
fps: false,
|
|
25778
25952
|
deep: false,
|
|
25779
25953
|
skyBox: false
|
|
25954
|
+
}); // 地形参数
|
|
25955
|
+
|
|
25956
|
+
let terrainParams = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
25957
|
+
exaggerationFactor: 1.0,
|
|
25958
|
+
// 夸张系数
|
|
25959
|
+
altitudeHeight: 0 // 基准高度
|
|
25960
|
+
|
|
25780
25961
|
}); //其他参数
|
|
25781
25962
|
|
|
25782
25963
|
let otherParams = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
@@ -25917,6 +26098,14 @@ const __default__ = {
|
|
|
25917
26098
|
viewModel.setSurfaceTransparency(otherParams.transparency);
|
|
25918
26099
|
break;
|
|
25919
26100
|
|
|
26101
|
+
case "exaggerationFactor":
|
|
26102
|
+
viewModel.setExaggerationFactor(terrainParams.exaggerationFactor);
|
|
26103
|
+
break;
|
|
26104
|
+
|
|
26105
|
+
case "altitudeHeight":
|
|
26106
|
+
viewModel.setAltitudeHeight(terrainParams.altitudeHeight);
|
|
26107
|
+
break;
|
|
26108
|
+
|
|
25920
26109
|
default:
|
|
25921
26110
|
break;
|
|
25922
26111
|
}
|
|
@@ -26941,6 +27130,126 @@ const __default__ = {
|
|
|
26941
27130
|
_: 1
|
|
26942
27131
|
/* STABLE */
|
|
26943
27132
|
|
|
27133
|
+
}, 8
|
|
27134
|
+
/* PROPS */
|
|
27135
|
+
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse_item, {
|
|
27136
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).terrainExaggeration,
|
|
27137
|
+
name: "terrain"
|
|
27138
|
+
}, {
|
|
27139
|
+
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, {
|
|
27140
|
+
"label-width": "90px",
|
|
27141
|
+
"label-position": "left"
|
|
27142
|
+
}, {
|
|
27143
|
+
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, {
|
|
27144
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).exaggerationFactor
|
|
27145
|
+
}, {
|
|
27146
|
+
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, {
|
|
27147
|
+
style: {
|
|
27148
|
+
"display": "flex"
|
|
27149
|
+
}
|
|
27150
|
+
}, {
|
|
27151
|
+
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, {
|
|
27152
|
+
span: 16
|
|
27153
|
+
}, {
|
|
27154
|
+
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, {
|
|
27155
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).exaggerationFactor,
|
|
27156
|
+
"onUpdate:modelValue": _cache[70] || (_cache[70] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).exaggerationFactor = $event),
|
|
27157
|
+
step: 0.1,
|
|
27158
|
+
min: 0,
|
|
27159
|
+
max: 10,
|
|
27160
|
+
onInput: _cache[71] || (_cache[71] = $event => paramsChanged('exaggerationFactor'))
|
|
27161
|
+
}, null, 8
|
|
27162
|
+
/* PROPS */
|
|
27163
|
+
, ["modelValue", "step"])]),
|
|
27164
|
+
_: 1
|
|
27165
|
+
/* STABLE */
|
|
27166
|
+
|
|
27167
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
27168
|
+
span: 8
|
|
27169
|
+
}, {
|
|
27170
|
+
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, {
|
|
27171
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).exaggerationFactor,
|
|
27172
|
+
"onUpdate:modelValue": _cache[72] || (_cache[72] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).exaggerationFactor = $event),
|
|
27173
|
+
step: 0.1,
|
|
27174
|
+
min: 0,
|
|
27175
|
+
max: 10,
|
|
27176
|
+
"controls-position": "right",
|
|
27177
|
+
onInput: _cache[73] || (_cache[73] = $event => paramsChanged('exaggerationFactor'))
|
|
27178
|
+
}, null, 8
|
|
27179
|
+
/* PROPS */
|
|
27180
|
+
, ["modelValue", "step"])]),
|
|
27181
|
+
_: 1
|
|
27182
|
+
/* STABLE */
|
|
27183
|
+
|
|
27184
|
+
})]),
|
|
27185
|
+
_: 1
|
|
27186
|
+
/* STABLE */
|
|
27187
|
+
|
|
27188
|
+
})]),
|
|
27189
|
+
_: 1
|
|
27190
|
+
/* STABLE */
|
|
27191
|
+
|
|
27192
|
+
}, 8
|
|
27193
|
+
/* PROPS */
|
|
27194
|
+
, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
27195
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).altitudeHeight
|
|
27196
|
+
}, {
|
|
27197
|
+
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, {
|
|
27198
|
+
style: {
|
|
27199
|
+
"display": "flex"
|
|
27200
|
+
}
|
|
27201
|
+
}, {
|
|
27202
|
+
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, {
|
|
27203
|
+
span: 16
|
|
27204
|
+
}, {
|
|
27205
|
+
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, {
|
|
27206
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).altitudeHeight,
|
|
27207
|
+
"onUpdate:modelValue": _cache[74] || (_cache[74] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).altitudeHeight = $event),
|
|
27208
|
+
step: 1,
|
|
27209
|
+
min: -1000,
|
|
27210
|
+
max: 1000,
|
|
27211
|
+
onInput: _cache[75] || (_cache[75] = $event => paramsChanged('altitudeHeight'))
|
|
27212
|
+
}, null, 8
|
|
27213
|
+
/* PROPS */
|
|
27214
|
+
, ["modelValue"])]),
|
|
27215
|
+
_: 1
|
|
27216
|
+
/* STABLE */
|
|
27217
|
+
|
|
27218
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
27219
|
+
span: 8
|
|
27220
|
+
}, {
|
|
27221
|
+
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, {
|
|
27222
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).altitudeHeight,
|
|
27223
|
+
"onUpdate:modelValue": _cache[76] || (_cache[76] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(terrainParams).altitudeHeight = $event),
|
|
27224
|
+
step: 1,
|
|
27225
|
+
min: -1000,
|
|
27226
|
+
max: 1000,
|
|
27227
|
+
"controls-position": "right",
|
|
27228
|
+
onInput: _cache[77] || (_cache[77] = $event => paramsChanged('altitudeHeight'))
|
|
27229
|
+
}, null, 8
|
|
27230
|
+
/* PROPS */
|
|
27231
|
+
, ["modelValue"])]),
|
|
27232
|
+
_: 1
|
|
27233
|
+
/* STABLE */
|
|
27234
|
+
|
|
27235
|
+
})]),
|
|
27236
|
+
_: 1
|
|
27237
|
+
/* STABLE */
|
|
27238
|
+
|
|
27239
|
+
})]),
|
|
27240
|
+
_: 1
|
|
27241
|
+
/* STABLE */
|
|
27242
|
+
|
|
27243
|
+
}, 8
|
|
27244
|
+
/* PROPS */
|
|
27245
|
+
, ["label"])]),
|
|
27246
|
+
_: 1
|
|
27247
|
+
/* STABLE */
|
|
27248
|
+
|
|
27249
|
+
})]),
|
|
27250
|
+
_: 1
|
|
27251
|
+
/* STABLE */
|
|
27252
|
+
|
|
26944
27253
|
}, 8
|
|
26945
27254
|
/* PROPS */
|
|
26946
27255
|
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse_item, {
|
|
@@ -26957,8 +27266,8 @@ const __default__ = {
|
|
|
26957
27266
|
}, {
|
|
26958
27267
|
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, {
|
|
26959
27268
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).viewMode,
|
|
26960
|
-
"onUpdate:modelValue": _cache[
|
|
26961
|
-
onChange: _cache[
|
|
27269
|
+
"onUpdate:modelValue": _cache[78] || (_cache[78] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).viewMode = $event),
|
|
27270
|
+
onChange: _cache[79] || (_cache[79] = $event => paramsChanged('viewMode'))
|
|
26962
27271
|
}, {
|
|
26963
27272
|
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, {
|
|
26964
27273
|
label: "3d"
|
|
@@ -27005,8 +27314,8 @@ const __default__ = {
|
|
|
27005
27314
|
}, {
|
|
27006
27315
|
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, {
|
|
27007
27316
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).grid,
|
|
27008
|
-
"onUpdate:modelValue": _cache[
|
|
27009
|
-
onChange: _cache[
|
|
27317
|
+
"onUpdate:modelValue": _cache[80] || (_cache[80] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).grid = $event),
|
|
27318
|
+
onChange: _cache[81] || (_cache[81] = $event => paramsChanged('grid'))
|
|
27010
27319
|
}, {
|
|
27011
27320
|
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, {
|
|
27012
27321
|
label: "no"
|
|
@@ -27052,9 +27361,9 @@ const __default__ = {
|
|
|
27052
27361
|
}, {
|
|
27053
27362
|
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, {
|
|
27054
27363
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).underground,
|
|
27055
|
-
"onUpdate:modelValue": _cache[
|
|
27364
|
+
"onUpdate:modelValue": _cache[82] || (_cache[82] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).underground = $event),
|
|
27056
27365
|
"controls-position": "left",
|
|
27057
|
-
onChange: _cache[
|
|
27366
|
+
onChange: _cache[83] || (_cache[83] = $event => paramsChanged('underground'))
|
|
27058
27367
|
}, null, 8
|
|
27059
27368
|
/* PROPS */
|
|
27060
27369
|
, ["modelValue"])]),
|
|
@@ -27076,11 +27385,11 @@ const __default__ = {
|
|
|
27076
27385
|
}, {
|
|
27077
27386
|
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, {
|
|
27078
27387
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).transparency,
|
|
27079
|
-
"onUpdate:modelValue": _cache[
|
|
27388
|
+
"onUpdate:modelValue": _cache[84] || (_cache[84] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).transparency = $event),
|
|
27080
27389
|
step: 0.01,
|
|
27081
27390
|
min: 0,
|
|
27082
27391
|
max: 1,
|
|
27083
|
-
onInput: _cache[
|
|
27392
|
+
onInput: _cache[85] || (_cache[85] = $event => paramsChanged('transparency'))
|
|
27084
27393
|
}, null, 8
|
|
27085
27394
|
/* PROPS */
|
|
27086
27395
|
, ["modelValue", "step"])]),
|
|
@@ -27092,12 +27401,12 @@ const __default__ = {
|
|
|
27092
27401
|
}, {
|
|
27093
27402
|
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, {
|
|
27094
27403
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).transparency,
|
|
27095
|
-
"onUpdate:modelValue": _cache[
|
|
27404
|
+
"onUpdate:modelValue": _cache[86] || (_cache[86] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(otherParams).transparency = $event),
|
|
27096
27405
|
step: 0.01,
|
|
27097
27406
|
min: 0,
|
|
27098
27407
|
max: 1,
|
|
27099
27408
|
"controls-position": "right",
|
|
27100
|
-
onInput: _cache[
|
|
27409
|
+
onInput: _cache[87] || (_cache[87] = $event => paramsChanged('transparency'))
|
|
27101
27410
|
}, null, 8
|
|
27102
27411
|
/* PROPS */
|
|
27103
27412
|
, ["modelValue", "step"])]),
|
|
@@ -27142,9 +27451,9 @@ const __default__ = {
|
|
|
27142
27451
|
// EXTERNAL MODULE: ./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js
|
|
27143
27452
|
var injectStylesIntoStyleTag = __webpack_require__(3379);
|
|
27144
27453
|
var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
|
|
27145
|
-
// 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=
|
|
27146
|
-
var
|
|
27147
|
-
;// 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=
|
|
27454
|
+
// 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
|
|
27455
|
+
var SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss = __webpack_require__(632);
|
|
27456
|
+
;// 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
|
|
27148
27457
|
|
|
27149
27458
|
|
|
27150
27459
|
|
|
@@ -27153,12 +27462,12 @@ var options = {};
|
|
|
27153
27462
|
options.insert = "head";
|
|
27154
27463
|
options.singleton = false;
|
|
27155
27464
|
|
|
27156
|
-
var update = injectStylesIntoStyleTag_default()(
|
|
27465
|
+
var update = injectStylesIntoStyleTag_default()(SceneSetvue_type_style_index_0_id_75fa85b8_lang_scss/* default */.Z, options);
|
|
27157
27466
|
|
|
27158
27467
|
|
|
27159
27468
|
|
|
27160
|
-
/* harmony default export */ var
|
|
27161
|
-
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=
|
|
27469
|
+
/* 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 || {});
|
|
27470
|
+
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=75fa85b8&lang=scss
|
|
27162
27471
|
|
|
27163
27472
|
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue
|
|
27164
27473
|
|
|
@@ -37805,7 +38114,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".coord-sightline{background:rgba(42,42
|
|
|
37805
38114
|
|
|
37806
38115
|
/***/ }),
|
|
37807
38116
|
|
|
37808
|
-
/***/
|
|
38117
|
+
/***/ 632:
|
|
37809
38118
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
37810
38119
|
|
|
37811
38120
|
"use strict";
|
|
@@ -38422,7 +38731,7 @@ var videoproject = __webpack_require__(7413);
|
|
|
38422
38731
|
// EXTERNAL MODULE: ./src/webgl/videofusion/index.js + 3 modules
|
|
38423
38732
|
var videofusion = __webpack_require__(7942);
|
|
38424
38733
|
// EXTERNAL MODULE: ./src/webgl/sceneset/index.js + 7 modules
|
|
38425
|
-
var sceneset = __webpack_require__(
|
|
38734
|
+
var sceneset = __webpack_require__(5802);
|
|
38426
38735
|
// EXTERNAL MODULE: ./src/webgl/light/index.js + 3 modules
|
|
38427
38736
|
var light = __webpack_require__(9001);
|
|
38428
38737
|
// EXTERNAL MODULE: ./src/webgl/geologicalbodyanalysis/index.js + 4 modules
|
|
@@ -38725,17 +39034,21 @@ class DrawManager {
|
|
|
38725
39034
|
color: "#ff0000",
|
|
38726
39035
|
opacity: 1.0,
|
|
38727
39036
|
width: 2,
|
|
38728
|
-
dash: false
|
|
39037
|
+
dash: false,
|
|
39038
|
+
clampToGround: true //是否贴地
|
|
39039
|
+
|
|
38729
39040
|
},
|
|
38730
39041
|
polygon: {
|
|
38731
39042
|
color: "#0000ff",
|
|
38732
39043
|
opacity: 0.3,
|
|
38733
39044
|
outline: true,
|
|
38734
39045
|
outlineColor: "#ff0000",
|
|
38735
|
-
outlineWidth:
|
|
39046
|
+
outlineWidth: 2,
|
|
38736
39047
|
outlineDash: false,
|
|
38737
39048
|
fill: true,
|
|
38738
|
-
fillStyle: null
|
|
39049
|
+
fillStyle: null,
|
|
39050
|
+
clampToGround: true //是否贴地
|
|
39051
|
+
|
|
38739
39052
|
}
|
|
38740
39053
|
});
|
|
38741
39054
|
|
|
@@ -39119,6 +39432,7 @@ class DrawManager {
|
|
|
39119
39432
|
entity.polyline = {
|
|
39120
39433
|
positions: entity.polygon.hierarchy._value.positions,
|
|
39121
39434
|
width: style.polygon.outlineWidth,
|
|
39435
|
+
clampToGround: true,
|
|
39122
39436
|
material: style.polygon.outlineDash ? new Cesium.PolylineDashMaterialProperty({
|
|
39123
39437
|
color: style.polygon.outlineColor
|
|
39124
39438
|
}) : style.polygon.outlineColor
|
|
@@ -39140,7 +39454,7 @@ class DrawManager {
|
|
|
39140
39454
|
});
|
|
39141
39455
|
}
|
|
39142
39456
|
|
|
39143
|
-
callFun && callFun(that._viewer);
|
|
39457
|
+
callFun && callFun(that._viewer, geojsonData);
|
|
39144
39458
|
});
|
|
39145
39459
|
} //删除指定绘图分组的所有图形
|
|
39146
39460
|
|
|
@@ -39162,6 +39476,8 @@ class DrawManager {
|
|
|
39162
39476
|
if (index > -1) {
|
|
39163
39477
|
this._layerGroup.splice(index, 1);
|
|
39164
39478
|
}
|
|
39479
|
+
|
|
39480
|
+
if (idCustom === 'draw') this.clear();
|
|
39165
39481
|
}
|
|
39166
39482
|
|
|
39167
39483
|
getGeometry(idCustom) {
|