@kq_npm/client3d_webgl_vue 2.7.3-beta → 2.7.5-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -90,7 +90,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".coord{background:rgba(42,42,42,.8);bo
90
90
 
91
91
  /***/ }),
92
92
 
93
- /***/ 356:
93
+ /***/ 407:
94
94
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
95
95
 
96
96
  /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(705);
@@ -932,12 +932,22 @@ class DrawManager {
932
932
  }
933
933
 
934
934
  this._viewer.scene.globe.depthTestAgainstTerrain = false;
935
- let geojsonDs = new Cesium.Kq3dGeoJsonDataSource(idCustom);
935
+
936
+ let geojsonDs = this._viewer.dataSources.getByName(idCustom);
937
+
938
+ if (geojsonDs.length === 0) {
939
+ geojsonDs = new Cesium.Kq3dGeoJsonDataSource(idCustom);
940
+
941
+ this._viewer.dataSources.add(geojsonDs);
942
+ } else {
943
+ geojsonDs = geojsonDs[0];
944
+ }
945
+
936
946
  let that = this;
937
947
  geojsonDs.load(geojsonData, style).then(ds => {
938
- if (style.polygon.outline && style.polygon.outlineDash) {
948
+ if (style.polygon.outline) {
939
949
  ds.entities.values.forEach(entity => {
940
- if (entity.polygon) {
950
+ if (entity.polygon && !entity.polyline) {
941
951
  entity.polygon.outline = false;
942
952
  entity.polyline = {
943
953
  positions: entity.polygon.hierarchy._value.positions,
@@ -950,8 +960,6 @@ class DrawManager {
950
960
  });
951
961
  }
952
962
 
953
- that._viewer.dataSources.add(ds);
954
-
955
963
  if (!that._layerGroup.includes(idCustom)) {
956
964
  that._layerGroup.push(idCustom);
957
965
  }
@@ -10617,7 +10625,7 @@ const TerrainOperationvue_type_script_setup_true_lang_js_default_ = {
10617
10625
  let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)({}); // 获取组件传参
10618
10626
 
10619
10627
  let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.reactive)({
10620
- terrainStyle: props.settingParams && props.settingParams.terrainStyle || 1,
10628
+ terrainStyle: props.settingParams && props.settingParams.terrainStyle || 0,
10621
10629
  // 地形操作类型。0:地形开挖;1:地形修改
10622
10630
  excavationDepth: props.settingParams && props.settingParams.excavationDepth || 500,
10623
10631
  // 地形开挖深度
@@ -13320,8 +13328,19 @@ const AspectAnalysisvue_type_script_setup_true_lang_js_default_ = {
13320
13328
 
13321
13329
  let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.reactive)({
13322
13330
  interval: props.settingParams && props.settingParams.interval || 500,
13331
+ // 采样间隔
13332
+ minInterval: props.settingParams && props.settingParams.minInterval || 100,
13333
+ // 采样间隔最小值
13334
+ maxInterval: props.settingParams && props.settingParams.maxInterval || 1000,
13335
+ // 采样间隔最大值
13323
13336
  arrowWidth: props.settingParams && props.settingParams.arrowWidth || 20,
13324
- arrowColor: props.settingParams && props.settingParams.arrowColor || "#FFFF00"
13337
+ // 箭头宽度
13338
+ minArrowWidth: props.settingParams && props.settingParams.minArrowWidth || 1,
13339
+ // 箭头宽度最小值
13340
+ maxArrowWidth: props.settingParams && props.settingParams.maxArrowWidth || 30,
13341
+ // 箭头宽度最大值
13342
+ arrowColor: props.settingParams && props.settingParams.arrowColor || "#FFFF00" // 箭头颜色
13343
+
13325
13344
  });
13326
13345
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.onMounted)(() => {
13327
13346
  currentLang.value = proxy.$i18n.locale; // 获取当前语言
@@ -13329,7 +13348,14 @@ const AspectAnalysisvue_type_script_setup_true_lang_js_default_ = {
13329
13348
  gis_utils_namespaceObject.utils.getWebMap(null, scenceView => {
13330
13349
  if (scenceView) {
13331
13350
  language.value = scenceView._language;
13332
- viewModel = new AspectAnalysisViewModel(scenceView, formItem);
13351
+ viewModel = new AspectAnalysisViewModel(scenceView, {
13352
+ interval: formItem.interval,
13353
+ // 采样间隔
13354
+ arrowWidth: formItem.arrowWidth,
13355
+ // 箭头宽度
13356
+ arrowColor: formItem.arrowColor // 箭头颜色
13357
+
13358
+ });
13333
13359
  }
13334
13360
  });
13335
13361
  }); // 参数改变
@@ -13432,12 +13458,12 @@ const AspectAnalysisvue_type_script_setup_true_lang_js_default_ = {
13432
13458
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).interval,
13433
13459
  "onUpdate:modelValue": _cache[0] || (_cache[0] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).interval = $event),
13434
13460
  step: 1,
13435
- min: 100,
13436
- max: 1000,
13461
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minInterval,
13462
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxInterval,
13437
13463
  onInput: _cache[1] || (_cache[1] = $event => paramsChanged('interval'))
13438
13464
  }, null, 8
13439
13465
  /* PROPS */
13440
- , ["modelValue"])]),
13466
+ , ["modelValue", "min", "max"])]),
13441
13467
  _: 1
13442
13468
  /* STABLE */
13443
13469
 
@@ -13448,13 +13474,13 @@ const AspectAnalysisvue_type_script_setup_true_lang_js_default_ = {
13448
13474
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).interval,
13449
13475
  "onUpdate:modelValue": _cache[2] || (_cache[2] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).interval = $event),
13450
13476
  step: 1,
13451
- min: 100,
13452
- max: 1000,
13477
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minInterval,
13478
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxInterval,
13453
13479
  "controls-position": "right",
13454
13480
  onInput: _cache[3] || (_cache[3] = $event => paramsChanged('interval'))
13455
13481
  }, null, 8
13456
13482
  /* PROPS */
13457
- , ["modelValue"])]),
13483
+ , ["modelValue", "min", "max"])]),
13458
13484
  _: 1
13459
13485
  /* STABLE */
13460
13486
 
@@ -13488,12 +13514,12 @@ const AspectAnalysisvue_type_script_setup_true_lang_js_default_ = {
13488
13514
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).arrowWidth,
13489
13515
  "onUpdate:modelValue": _cache[4] || (_cache[4] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).arrowWidth = $event),
13490
13516
  step: 1,
13491
- min: 1,
13492
- max: 30,
13517
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minArrowWidth,
13518
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxArrowWidth,
13493
13519
  onInput: _cache[5] || (_cache[5] = $event => paramsChanged('arrowWidth'))
13494
13520
  }, null, 8
13495
13521
  /* PROPS */
13496
- , ["modelValue"])]),
13522
+ , ["modelValue", "min", "max"])]),
13497
13523
  _: 1
13498
13524
  /* STABLE */
13499
13525
 
@@ -13504,13 +13530,13 @@ const AspectAnalysisvue_type_script_setup_true_lang_js_default_ = {
13504
13530
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).arrowWidth,
13505
13531
  "onUpdate:modelValue": _cache[6] || (_cache[6] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).arrowWidth = $event),
13506
13532
  step: 1,
13507
- min: 1,
13508
- max: 30,
13533
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minArrowWidth,
13534
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxArrowWidth,
13509
13535
  "controls-position": "right",
13510
13536
  onInput: _cache[7] || (_cache[7] = $event => paramsChanged('arrowWidth'))
13511
13537
  }, null, 8
13512
13538
  /* PROPS */
13513
- , ["modelValue"])]),
13539
+ , ["modelValue", "min", "max"])]),
13514
13540
  _: 1
13515
13541
  /* STABLE */
13516
13542
 
@@ -14081,26 +14107,59 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
14081
14107
 
14082
14108
  let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.reactive)({
14083
14109
  fillType: props.settingParams && props.settingParams.fillType || 0,
14110
+ // 填充类型
14111
+ fillTypeShow: props.settingParams && props.settingParams.fillTypeShow || true,
14112
+ // 填充类型是否显示
14084
14113
  elevationMarking: props.settingParams && props.settingParams.elevationMarking || true,
14114
+ // 高程标注
14085
14115
  firstCurve: props.settingParams && props.settingParams.firstCurve !== undefined || true,
14116
+ // 首曲线
14086
14117
  firstCurveWidth: props.settingParams && props.settingParams.firstCurveWidth || 2,
14118
+ // 首曲线宽度
14119
+ minFirstCurveWidth: props.settingParams && props.settingParams.minFirstCurveWidth || 0,
14120
+ // 首曲线宽度最下值
14121
+ maxFirstCurveWidth: props.settingParams && props.settingParams.maxFirstCurveWidth || 5,
14122
+ // 首曲线宽度最大值
14087
14123
  firstCurveColor: props.settingParams && props.settingParams.firstCurveColor || "#E6A23C",
14124
+ // 首曲线颜色
14088
14125
  rememberCurve: props.settingParams && props.settingParams.rememberCurve !== undefined || true,
14126
+ // 计曲线
14089
14127
  rememberCurveWidth: props.settingParams && props.settingParams.rememberCurveWidth || 4,
14128
+ // 计曲线宽度
14129
+ minRememberCurveWidth: props.settingParams && props.settingParams.minRememberCurveWidth || 0,
14130
+ // 计曲线宽度最小值
14131
+ maxRememberCurveWidth: props.settingParams && props.settingParams.maxRememberCurveWidth || 5,
14132
+ // 计曲线宽度最大值
14090
14133
  rememberCurveColor: props.settingParams && props.settingParams.rememberCurveColor || "#409EFF",
14134
+ // 计曲线颜色
14091
14135
  intervalCurve: props.settingParams && props.settingParams.intervalCurve !== undefined || true,
14136
+ // 间曲线
14092
14137
  intervalCurveWidth: props.settingParams && props.settingParams.intervalCurveWidth || 1,
14138
+ // 间曲线宽度
14093
14139
  intervalCurveColor: props.settingParams && props.settingParams.intervalCurveColor || "#67C23A",
14140
+ // 间曲线颜色
14094
14141
  extraCurve: props.settingParams && props.settingParams.extraCurve !== undefined || true,
14142
+ // 助曲线
14095
14143
  extraCurveWidth: props.settingParams && props.settingParams.extraCurveWidth || 1,
14144
+ // 助曲线宽度
14145
+ minExtraCurveWidth: props.settingParams && props.settingParams.minExtraCurveWidth || 1,
14146
+ // 助曲线宽度最小值
14147
+ maxExtraCurveWidth: props.settingParams && props.settingParams.maxExtraCurveWidth || 1,
14148
+ // 助曲线宽度最大值
14096
14149
  extraCurveColor: props.settingParams && props.settingParams.extraCurveColor || "#F56C6C",
14150
+ // 助曲线颜色
14097
14151
  fillStyle: props.settingParams && props.settingParams.fillStyle || 1,
14152
+ // 填充样式
14098
14153
  colorTableHeight: props.settingParams && props.settingParams.colorTableHeight || [1000, 2000, 3000, 4000, 8000],
14099
14154
  colorTable: props.settingParams && props.settingParams.colorTable || ["#00FF00", "#0000FF", "#FFFF00", "#FF7F00", "#FF0000"],
14100
14155
  colorImage: props.settingParams && props.settingParams.colorImage || "0",
14156
+ // 渐变颜色
14101
14157
  minHeight: props.settingParams && props.settingParams.minHeight || 300,
14158
+ // 最小高度
14102
14159
  maxHeight: props.settingParams && props.settingParams.maxHeight || 5100,
14103
- surfaceAlpha: props.settingParams && props.settingParams.surfaceAlpha || 0.6
14160
+ // 最大高度
14161
+ surfaceAlpha: props.settingParams && props.settingParams.surfaceAlpha || 0.6 // 面透明度
14162
+
14104
14163
  });
14105
14164
  let viewModel = null;
14106
14165
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.onMounted)(() => {
@@ -14332,7 +14391,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
14332
14391
 
14333
14392
  const _component_kq_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("kq-button");
14334
14393
 
14335
- return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("section", IsolineAnalysisvue_type_script_setup_true_lang_js_hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, {
14394
+ return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("section", IsolineAnalysisvue_type_script_setup_true_lang_js_hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, {
14336
14395
  gutter: 20
14337
14396
  }, {
14338
14397
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_col, {
@@ -14381,11 +14440,17 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
14381
14440
  _: 1
14382
14441
  /* STABLE */
14383
14442
 
14384
- }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, {
14443
+ }, 512
14444
+ /* NEED_PATCH */
14445
+ ), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).fillTypeShow]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, {
14385
14446
  class: "kq3d-isoline-analysis-tip"
14386
14447
  }, {
14387
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).skylineTips), 1
14388
- /* TEXT */
14448
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", {
14449
+ style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.normalizeStyle)({
14450
+ 'margin-top': (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).fillTypeShow ? '16px' : '0px'
14451
+ })
14452
+ }, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).skylineTips), 5
14453
+ /* TEXT, STYLE */
14389
14454
  )]),
14390
14455
  _: 1
14391
14456
  /* STABLE */
@@ -14459,12 +14524,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
14459
14524
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).firstCurveWidth,
14460
14525
  "onUpdate:modelValue": _cache[5] || (_cache[5] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).firstCurveWidth = $event),
14461
14526
  step: 0.1,
14462
- min: 0,
14463
- max: 5,
14527
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minFirstCurveWidth,
14528
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxFirstCurveWidth,
14464
14529
  onInput: _cache[6] || (_cache[6] = $event => paramsChanged('firstCurveWidth'))
14465
14530
  }, null, 8
14466
14531
  /* PROPS */
14467
- , ["modelValue", "step"])]),
14532
+ , ["modelValue", "step", "min", "max"])]),
14468
14533
  _: 1
14469
14534
  /* STABLE */
14470
14535
 
@@ -14474,14 +14539,14 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
14474
14539
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
14475
14540
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).firstCurveWidth,
14476
14541
  "onUpdate:modelValue": _cache[7] || (_cache[7] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).firstCurveWidth = $event),
14477
- min: 0,
14478
- max: 5,
14542
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minFirstCurveWidth,
14543
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxFirstCurveWidth,
14479
14544
  step: 0.1,
14480
14545
  onInput: _cache[8] || (_cache[8] = $event => paramsChanged('firstCurveWidth')),
14481
14546
  "controls-position": "right"
14482
14547
  }, null, 8
14483
14548
  /* PROPS */
14484
- , ["modelValue", "step"])]),
14549
+ , ["modelValue", "min", "max", "step"])]),
14485
14550
  _: 1
14486
14551
  /* STABLE */
14487
14552
 
@@ -14557,12 +14622,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
14557
14622
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).rememberCurveWidth,
14558
14623
  "onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).rememberCurveWidth = $event),
14559
14624
  step: 0.1,
14560
- min: 0,
14561
- max: 5,
14625
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minRememberCurveWidth,
14626
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxRememberCurveWidth,
14562
14627
  onInput: _cache[14] || (_cache[14] = $event => paramsChanged('rememberCurveWidth'))
14563
14628
  }, null, 8
14564
14629
  /* PROPS */
14565
- , ["modelValue", "step"])]),
14630
+ , ["modelValue", "step", "min", "max"])]),
14566
14631
  _: 1
14567
14632
  /* STABLE */
14568
14633
 
@@ -14572,14 +14637,14 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
14572
14637
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
14573
14638
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).rememberCurveWidth,
14574
14639
  "onUpdate:modelValue": _cache[15] || (_cache[15] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).rememberCurveWidth = $event),
14575
- min: 0,
14576
- max: 5,
14640
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minRememberCurveWidth,
14641
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxRememberCurveWidth,
14577
14642
  step: 0.1,
14578
14643
  onInput: _cache[16] || (_cache[16] = $event => paramsChanged('rememberCurveWidth')),
14579
14644
  "controls-position": "right"
14580
14645
  }, null, 8
14581
14646
  /* PROPS */
14582
- , ["modelValue", "step"])]),
14647
+ , ["modelValue", "min", "max", "step"])]),
14583
14648
  _: 1
14584
14649
  /* STABLE */
14585
14650
 
@@ -14655,12 +14720,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
14655
14720
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).intervalCurveWidth,
14656
14721
  "onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).intervalCurveWidth = $event),
14657
14722
  step: 0.1,
14658
- min: 0,
14659
- max: 5,
14723
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minIntervalCurveWidth,
14724
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxIntervalCurveWidth,
14660
14725
  onInput: _cache[22] || (_cache[22] = $event => paramsChanged('intervalCurveWidth'))
14661
14726
  }, null, 8
14662
14727
  /* PROPS */
14663
- , ["modelValue", "step"])]),
14728
+ , ["modelValue", "step", "min", "max"])]),
14664
14729
  _: 1
14665
14730
  /* STABLE */
14666
14731
 
@@ -14670,14 +14735,14 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
14670
14735
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
14671
14736
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).intervalCurveWidth,
14672
14737
  "onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).intervalCurveWidth = $event),
14673
- min: 0,
14674
- max: 5,
14738
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minIntervalCurveWidth,
14739
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxIntervalCurveWidth,
14675
14740
  step: 0.1,
14676
14741
  onInput: _cache[24] || (_cache[24] = $event => paramsChanged('intervalCurveWidth')),
14677
14742
  "controls-position": "right"
14678
14743
  }, null, 8
14679
14744
  /* PROPS */
14680
- , ["modelValue", "step"])]),
14745
+ , ["modelValue", "min", "max", "step"])]),
14681
14746
  _: 1
14682
14747
  /* STABLE */
14683
14748
 
@@ -14753,12 +14818,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
14753
14818
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).extraCurveWidth,
14754
14819
  "onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).extraCurveWidth = $event),
14755
14820
  step: 0.1,
14756
- min: 0,
14757
- max: 5,
14821
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minExtraCurveWidth,
14822
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxExtraCurveWidth,
14758
14823
  onInput: _cache[30] || (_cache[30] = $event => paramsChanged('extraCurveWidth'))
14759
14824
  }, null, 8
14760
14825
  /* PROPS */
14761
- , ["modelValue", "step"])]),
14826
+ , ["modelValue", "step", "min", "max"])]),
14762
14827
  _: 1
14763
14828
  /* STABLE */
14764
14829
 
@@ -14768,14 +14833,14 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
14768
14833
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
14769
14834
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).extraCurveWidth,
14770
14835
  "onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).extraCurveWidth = $event),
14771
- min: 0,
14772
- max: 5,
14836
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minExtraCurveWidth,
14837
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxExtraCurveWidth,
14773
14838
  step: 0.1,
14774
14839
  onInput: _cache[32] || (_cache[32] = $event => paramsChanged('extraCurveWidth')),
14775
14840
  "controls-position": "right"
14776
14841
  }, null, 8
14777
14842
  /* PROPS */
14778
- , ["modelValue", "step"])]),
14843
+ , ["modelValue", "min", "max", "step"])]),
14779
14844
  _: 1
14780
14845
  /* STABLE */
14781
14846
 
@@ -15176,7 +15241,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
15176
15241
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("img", {
15177
15242
  class: "kq3d-isoline-analysis-legend",
15178
15243
  src: item.src,
15179
- alt: ""
15244
+ alt: ""
15180
15245
  }, null, 8
15181
15246
  /* PROPS */
15182
15247
  , IsolineAnalysisvue_type_script_setup_true_lang_js_hoisted_9)]),
@@ -15278,12 +15343,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
15278
15343
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).firstCurveWidth,
15279
15344
  "onUpdate:modelValue": _cache[59] || (_cache[59] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).firstCurveWidth = $event),
15280
15345
  step: 0.1,
15281
- min: 0,
15282
- max: 5,
15346
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minFirstCurveWidth,
15347
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxFirstCurveWidth,
15283
15348
  onInput: _cache[60] || (_cache[60] = $event => paramsChanged('firstCurveWidth'))
15284
15349
  }, null, 8
15285
15350
  /* PROPS */
15286
- , ["modelValue", "step"])]),
15351
+ , ["modelValue", "step", "min", "max"])]),
15287
15352
  _: 1
15288
15353
  /* STABLE */
15289
15354
 
@@ -15293,14 +15358,14 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
15293
15358
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
15294
15359
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).firstCurveWidth,
15295
15360
  "onUpdate:modelValue": _cache[61] || (_cache[61] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).firstCurveWidth = $event),
15296
- min: 0,
15297
- max: 5,
15361
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minFirstCurveWidth,
15362
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxFirstCurveWidth,
15298
15363
  step: 0.1,
15299
15364
  onInput: _cache[62] || (_cache[62] = $event => paramsChanged('firstCurveWidth')),
15300
15365
  "controls-position": "right"
15301
15366
  }, null, 8
15302
15367
  /* PROPS */
15303
- , ["modelValue", "step"])]),
15368
+ , ["modelValue", "min", "max", "step"])]),
15304
15369
  _: 1
15305
15370
  /* STABLE */
15306
15371
 
@@ -15376,12 +15441,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
15376
15441
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).rememberCurveWidth,
15377
15442
  "onUpdate:modelValue": _cache[67] || (_cache[67] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).rememberCurveWidth = $event),
15378
15443
  step: 0.1,
15379
- min: 0,
15380
- max: 5,
15444
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minRememberCurveWidth,
15445
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxRememberCurveWidth,
15381
15446
  onInput: _cache[68] || (_cache[68] = $event => paramsChanged('rememberCurveWidth'))
15382
15447
  }, null, 8
15383
15448
  /* PROPS */
15384
- , ["modelValue", "step"])]),
15449
+ , ["modelValue", "step", "min", "max"])]),
15385
15450
  _: 1
15386
15451
  /* STABLE */
15387
15452
 
@@ -15391,14 +15456,14 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
15391
15456
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
15392
15457
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).rememberCurveWidth,
15393
15458
  "onUpdate:modelValue": _cache[69] || (_cache[69] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).rememberCurveWidth = $event),
15394
- min: 0,
15395
- max: 5,
15459
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minRememberCurveWidth,
15460
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxRememberCurveWidth,
15396
15461
  step: 0.1,
15397
15462
  onInput: _cache[70] || (_cache[70] = $event => paramsChanged('rememberCurveWidth')),
15398
15463
  "controls-position": "right"
15399
15464
  }, null, 8
15400
15465
  /* PROPS */
15401
- , ["modelValue", "step"])]),
15466
+ , ["modelValue", "min", "max", "step"])]),
15402
15467
  _: 1
15403
15468
  /* STABLE */
15404
15469
 
@@ -15474,12 +15539,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
15474
15539
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).intervalCurveWidth,
15475
15540
  "onUpdate:modelValue": _cache[75] || (_cache[75] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).intervalCurveWidth = $event),
15476
15541
  step: 0.1,
15477
- min: 0,
15478
- max: 5,
15542
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minIntervalCurveWidth,
15543
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxIntervalCurveWidth,
15479
15544
  onInput: _cache[76] || (_cache[76] = $event => paramsChanged('intervalCurveWidth'))
15480
15545
  }, null, 8
15481
15546
  /* PROPS */
15482
- , ["modelValue", "step"])]),
15547
+ , ["modelValue", "step", "min", "max"])]),
15483
15548
  _: 1
15484
15549
  /* STABLE */
15485
15550
 
@@ -15489,14 +15554,14 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
15489
15554
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
15490
15555
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).intervalCurveWidth,
15491
15556
  "onUpdate:modelValue": _cache[77] || (_cache[77] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).intervalCurveWidth = $event),
15492
- min: 0,
15493
- max: 5,
15557
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minIntervalCurveWidth,
15558
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxIntervalCurveWidth,
15494
15559
  step: 0.1,
15495
15560
  onInput: _cache[78] || (_cache[78] = $event => paramsChanged('intervalCurveWidth')),
15496
15561
  "controls-position": "right"
15497
15562
  }, null, 8
15498
15563
  /* PROPS */
15499
- , ["modelValue", "step"])]),
15564
+ , ["modelValue", "min", "max", "step"])]),
15500
15565
  _: 1
15501
15566
  /* STABLE */
15502
15567
 
@@ -15572,12 +15637,12 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
15572
15637
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).extraCurveWidth,
15573
15638
  "onUpdate:modelValue": _cache[83] || (_cache[83] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).extraCurveWidth = $event),
15574
15639
  step: 0.1,
15575
- min: 0,
15576
- max: 5,
15640
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minExtraCurveWidth,
15641
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxExtraCurveWidth,
15577
15642
  onInput: _cache[84] || (_cache[84] = $event => paramsChanged('extraCurveWidth'))
15578
15643
  }, null, 8
15579
15644
  /* PROPS */
15580
- , ["modelValue", "step"])]),
15645
+ , ["modelValue", "step", "min", "max"])]),
15581
15646
  _: 1
15582
15647
  /* STABLE */
15583
15648
 
@@ -15587,14 +15652,14 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
15587
15652
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
15588
15653
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).extraCurveWidth,
15589
15654
  "onUpdate:modelValue": _cache[85] || (_cache[85] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).extraCurveWidth = $event),
15590
- min: 0,
15591
- max: 5,
15655
+ min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).minExtraCurveWidth,
15656
+ max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).maxExtraCurveWidth,
15592
15657
  step: 0.1,
15593
15658
  onInput: _cache[86] || (_cache[86] = $event => paramsChanged('extraCurveWidth')),
15594
15659
  "controls-position": "right"
15595
15660
  }, null, 8
15596
15661
  /* PROPS */
15597
- , ["modelValue", "step"])]),
15662
+ , ["modelValue", "min", "max", "step"])]),
15598
15663
  _: 1
15599
15664
  /* STABLE */
15600
15665
 
@@ -22801,23 +22866,23 @@ const StatusBarvue_type_script_setup_true_lang_js_default_ = {
22801
22866
  }));
22802
22867
  ;// CONCATENATED MODULE: ./src/webgl/statusbar/StatusBar.vue?vue&type=script&setup=true&lang=js
22803
22868
 
22804
- // 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/statusbar/StatusBar.vue?vue&type=style&index=0&id=b8692734&lang=scss
22805
- var StatusBarvue_type_style_index_0_id_b8692734_lang_scss = __webpack_require__(356);
22806
- ;// 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/statusbar/StatusBar.vue?vue&type=style&index=0&id=b8692734&lang=scss
22869
+ // 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/statusbar/StatusBar.vue?vue&type=style&index=0&id=0f45d5c6&lang=scss
22870
+ var StatusBarvue_type_style_index_0_id_0f45d5c6_lang_scss = __webpack_require__(407);
22871
+ ;// 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/statusbar/StatusBar.vue?vue&type=style&index=0&id=0f45d5c6&lang=scss
22807
22872
 
22808
22873
 
22809
22874
 
22810
- var StatusBarvue_type_style_index_0_id_b8692734_lang_scss_options = {};
22875
+ var StatusBarvue_type_style_index_0_id_0f45d5c6_lang_scss_options = {};
22811
22876
 
22812
- StatusBarvue_type_style_index_0_id_b8692734_lang_scss_options.insert = "head";
22813
- StatusBarvue_type_style_index_0_id_b8692734_lang_scss_options.singleton = false;
22877
+ StatusBarvue_type_style_index_0_id_0f45d5c6_lang_scss_options.insert = "head";
22878
+ StatusBarvue_type_style_index_0_id_0f45d5c6_lang_scss_options.singleton = false;
22814
22879
 
22815
- var StatusBarvue_type_style_index_0_id_b8692734_lang_scss_update = injectStylesIntoStyleTag_default()(StatusBarvue_type_style_index_0_id_b8692734_lang_scss/* default */.Z, StatusBarvue_type_style_index_0_id_b8692734_lang_scss_options);
22880
+ var StatusBarvue_type_style_index_0_id_0f45d5c6_lang_scss_update = injectStylesIntoStyleTag_default()(StatusBarvue_type_style_index_0_id_0f45d5c6_lang_scss/* default */.Z, StatusBarvue_type_style_index_0_id_0f45d5c6_lang_scss_options);
22816
22881
 
22817
22882
 
22818
22883
 
22819
- /* harmony default export */ var statusbar_StatusBarvue_type_style_index_0_id_b8692734_lang_scss = (StatusBarvue_type_style_index_0_id_b8692734_lang_scss/* default.locals */.Z.locals || {});
22820
- ;// CONCATENATED MODULE: ./src/webgl/statusbar/StatusBar.vue?vue&type=style&index=0&id=b8692734&lang=scss
22884
+ /* harmony default export */ var statusbar_StatusBarvue_type_style_index_0_id_0f45d5c6_lang_scss = (StatusBarvue_type_style_index_0_id_0f45d5c6_lang_scss/* default.locals */.Z.locals || {});
22885
+ ;// CONCATENATED MODULE: ./src/webgl/statusbar/StatusBar.vue?vue&type=style&index=0&id=0f45d5c6&lang=scss
22821
22886
 
22822
22887
  ;// CONCATENATED MODULE: ./src/webgl/statusbar/StatusBar.vue
22823
22888