@kq_npm/client3d_webgl_vue 4.5.30 → 4.5.32

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.
Files changed (55) hide show
  1. package/adddata/index.js +227 -496
  2. package/aspectanalysis/index.js +71 -182
  3. package/baseterraingallery/index.js +40 -102
  4. package/boxclip/index.js +197 -423
  5. package/clientPrint/index.js +7324 -17727
  6. package/comparemap/index.js +165 -216
  7. package/compass/index.js +20 -47
  8. package/excavatefillanalysis/index.js +101 -206
  9. package/fixedzoomin/index.js +20 -43
  10. package/fixedzoomout/index.js +18 -42
  11. package/flight/index.js +206 -353
  12. package/floodanalysis/index.js +145 -328
  13. package/geologicalbodyanalysis/index.js +114 -241
  14. package/gpuspatialquery/index.js +146 -340
  15. package/hawkeye/index.js +78 -80
  16. package/headertemp/index.js +8 -19
  17. package/heatmap3d/index.js +304 -645
  18. package/index.js +6896 -17544
  19. package/isolineanalysis/index.js +451 -1183
  20. package/light/index.js +308 -486
  21. package/limitheightanalysis/index.js +107 -204
  22. package/measure/index.js +145 -331
  23. package/modelFlat/index.js +114 -183
  24. package/modelexcavate/index.js +78 -172
  25. package/modelfilter/index.js +127 -252
  26. package/modelprofileanalysis/index.js +154 -297
  27. package/modelselect/index.js +90 -128
  28. package/package.json +1 -1
  29. package/particleeffect/index.js +170 -381
  30. package/planeclip/index.js +146 -281
  31. package/resetview/index.js +12 -31
  32. package/roller/index.js +252 -353
  33. package/scaneffect/index.js +178 -518
  34. package/sceneadvancedtoimage/index.js +152 -337
  35. package/sceneapp/index.js +7324 -17727
  36. package/sceneset/index.js +299 -838
  37. package/scenetohdimage/index.js +105 -276
  38. package/sceneview/index.js +7324 -17727
  39. package/screenshot/index.js +204 -281
  40. package/shadowanalysis/index.js +175 -386
  41. package/sightlineanalysis/index.js +135 -245
  42. package/skylineanalysis/index.js +108 -289
  43. package/slopeanalysis/index.js +174 -378
  44. package/slopeaspectanalysis/index.js +206 -466
  45. package/statusbar/index.js +37 -39
  46. package/terrainoperation/index.js +124 -218
  47. package/terrainprofileanalysis/index.js +66 -118
  48. package/typhoontrac/index.js +208 -330
  49. package/underground/index.js +16 -40
  50. package/videofusion/index.js +214 -470
  51. package/videoproject/index.js +220 -472
  52. package/viewshedanalysis/index.js +93 -230
  53. package/weathereffect/index.js +111 -295
  54. package/windyslicing/index.js +545 -727
  55. package/wireframesketch/index.js +49 -106
@@ -13,7 +13,8 @@ return /******/ (function() { // webpackBootstrap
13
13
  /******/ var __webpack_modules__ = ({
14
14
 
15
15
  /***/ 7705:
16
- /***/ (function(module) {
16
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17
+
17
18
 
18
19
 
19
20
  /*
@@ -22,51 +23,44 @@ return /******/ (function() { // webpackBootstrap
22
23
  */
23
24
  // css base code, injected by the css-loader
24
25
  // eslint-disable-next-line func-names
25
-
26
+ __webpack_require__(2118);
27
+ __webpack_require__(8470);
28
+ __webpack_require__(2170);
26
29
  module.exports = function (cssWithMappingToString) {
27
30
  var list = []; // return the list of modules as css string
28
31
 
29
32
  list.toString = function toString() {
30
33
  return this.map(function (item) {
31
34
  var content = cssWithMappingToString(item);
32
-
33
35
  if (item[2]) {
34
36
  return "@media ".concat(item[2], " {").concat(content, "}");
35
37
  }
36
-
37
38
  return content;
38
39
  }).join("");
39
40
  }; // import a list of modules into the list
40
41
  // eslint-disable-next-line func-names
41
42
 
42
-
43
43
  list.i = function (modules, mediaQuery, dedupe) {
44
44
  if (typeof modules === "string") {
45
45
  // eslint-disable-next-line no-param-reassign
46
46
  modules = [[null, modules, ""]];
47
47
  }
48
-
49
48
  var alreadyImportedModules = {};
50
-
51
49
  if (dedupe) {
52
50
  for (var i = 0; i < this.length; i++) {
53
51
  // eslint-disable-next-line prefer-destructuring
54
52
  var id = this[i][0];
55
-
56
53
  if (id != null) {
57
54
  alreadyImportedModules[id] = true;
58
55
  }
59
56
  }
60
57
  }
61
-
62
58
  for (var _i = 0; _i < modules.length; _i++) {
63
59
  var item = [].concat(modules[_i]);
64
-
65
60
  if (dedupe && alreadyImportedModules[item[0]]) {
66
61
  // eslint-disable-next-line no-continue
67
62
  continue;
68
63
  }
69
-
70
64
  if (mediaQuery) {
71
65
  if (!item[2]) {
72
66
  item[2] = mediaQuery;
@@ -74,11 +68,9 @@ module.exports = function (cssWithMappingToString) {
74
68
  item[2] = "".concat(mediaQuery, " and ").concat(item[2]);
75
69
  }
76
70
  }
77
-
78
71
  list.push(item);
79
72
  }
80
73
  };
81
-
82
74
  return list;
83
75
  };
84
76
 
@@ -92,16 +84,14 @@ var __webpack_unused_export__;
92
84
 
93
85
  __webpack_unused_export__ = ({
94
86
  value: true
95
- }); // runtime helper for setting properties on components
87
+ });
88
+ // runtime helper for setting properties on components
96
89
  // in a tree-shakable way
97
-
98
90
  exports.Z = (sfc, props) => {
99
91
  const target = sfc.__vccOpts || sfc;
100
-
101
92
  for (const [key, val] of props) {
102
93
  target[key] = val;
103
94
  }
104
-
105
95
  return target;
106
96
  };
107
97
 
@@ -114,18 +104,16 @@ exports.Z = (sfc, props) => {
114
104
  /* harmony import */ var element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0__);
115
105
  /* harmony import */ var _init__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(7997);
116
106
  /* harmony import */ var _init__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_init__WEBPACK_IMPORTED_MODULE_1__);
117
- /*
118
- * Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
119
- * All rights reserved.
107
+ /*
108
+ * Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
109
+ * All rights reserved.
120
110
  */
121
111
 
122
112
 
123
-
124
113
  element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0__.ElMessage.install = (Vue, opts) => {
125
114
  _init__WEBPACK_IMPORTED_MODULE_1___default()(Vue, opts);
126
115
  Vue.component("KqMessage", element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0__.ElMessage);
127
116
  };
128
-
129
117
  /* harmony default export */ __webpack_exports__["Z"] = (element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0__.ElMessage);
130
118
 
131
119
  /***/ }),
@@ -458,6 +446,62 @@ module.exports = require("core-js/modules/es.array.includes.js");
458
446
 
459
447
  /***/ }),
460
448
 
449
+ /***/ 2118:
450
+ /***/ (function(module) {
451
+
452
+ module.exports = require("core-js/modules/es.array.push.js");
453
+
454
+ /***/ }),
455
+
456
+ /***/ 8470:
457
+ /***/ (function(module) {
458
+
459
+ module.exports = require("core-js/modules/esnext.iterator.constructor.js");
460
+
461
+ /***/ }),
462
+
463
+ /***/ 2753:
464
+ /***/ (function(module) {
465
+
466
+ module.exports = require("core-js/modules/esnext.iterator.filter.js");
467
+
468
+ /***/ }),
469
+
470
+ /***/ 1058:
471
+ /***/ (function(module) {
472
+
473
+ module.exports = require("core-js/modules/esnext.iterator.for-each.js");
474
+
475
+ /***/ }),
476
+
477
+ /***/ 2170:
478
+ /***/ (function(module) {
479
+
480
+ module.exports = require("core-js/modules/esnext.iterator.map.js");
481
+
482
+ /***/ }),
483
+
484
+ /***/ 4360:
485
+ /***/ (function(module) {
486
+
487
+ module.exports = require("core-js/modules/web.url-search-params.delete.js");
488
+
489
+ /***/ }),
490
+
491
+ /***/ 8824:
492
+ /***/ (function(module) {
493
+
494
+ module.exports = require("core-js/modules/web.url-search-params.has.js");
495
+
496
+ /***/ }),
497
+
498
+ /***/ 2936:
499
+ /***/ (function(module) {
500
+
501
+ module.exports = require("core-js/modules/web.url-search-params.size.js");
502
+
503
+ /***/ }),
504
+
461
505
  /***/ 9389:
462
506
  /***/ (function(module) {
463
507
 
@@ -517,7 +561,6 @@ function _defineProperty(obj, key, value) {
517
561
  } else {
518
562
  obj[key] = value;
519
563
  }
520
-
521
564
  return obj;
522
565
  }
523
566
 
@@ -610,6 +653,20 @@ __webpack_require__.d(__webpack_exports__, {
610
653
 
611
654
  // EXTERNAL MODULE: external "core-js/modules/es.array.includes.js"
612
655
  var es_array_includes_js_ = __webpack_require__(3600);
656
+ // EXTERNAL MODULE: external "core-js/modules/es.array.push.js"
657
+ var es_array_push_js_ = __webpack_require__(2118);
658
+ // EXTERNAL MODULE: external "core-js/modules/esnext.iterator.constructor.js"
659
+ var esnext_iterator_constructor_js_ = __webpack_require__(8470);
660
+ // EXTERNAL MODULE: external "core-js/modules/esnext.iterator.filter.js"
661
+ var esnext_iterator_filter_js_ = __webpack_require__(2753);
662
+ // EXTERNAL MODULE: external "core-js/modules/esnext.iterator.for-each.js"
663
+ var esnext_iterator_for_each_js_ = __webpack_require__(1058);
664
+ // EXTERNAL MODULE: external "core-js/modules/web.url-search-params.delete.js"
665
+ var web_url_search_params_delete_js_ = __webpack_require__(4360);
666
+ // EXTERNAL MODULE: external "core-js/modules/web.url-search-params.has.js"
667
+ var web_url_search_params_has_js_ = __webpack_require__(8824);
668
+ // EXTERNAL MODULE: external "core-js/modules/web.url-search-params.size.js"
669
+ var web_url_search_params_size_js_ = __webpack_require__(2936);
613
670
  // EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
614
671
  var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(1895);
615
672
  // EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
@@ -622,7 +679,6 @@ var defineProperty = __webpack_require__(8270);
622
679
  var message = __webpack_require__(1349);
623
680
  ;// CONCATENATED MODULE: ./src/webgl/heatmap3d/Heatmap3dViewModel.js
624
681
 
625
-
626
682
  /*
627
683
  * Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
628
684
  * All rights reserved.
@@ -633,27 +689,18 @@ var message = __webpack_require__(1349);
633
689
  class Heatmap3dViewModel {
634
690
  constructor(scenceView, options) {
635
691
  (0,defineProperty/* default */.Z)(this, "_viewer", null);
636
-
637
692
  (0,defineProperty/* default */.Z)(this, "_options", null);
638
-
639
693
  (0,defineProperty/* default */.Z)(this, "_heatmap", null);
640
-
641
694
  (0,defineProperty/* default */.Z)(this, "_mouseLabel", null);
642
-
643
695
  (0,defineProperty/* default */.Z)(this, "language", null);
644
-
645
696
  (0,defineProperty/* default */.Z)(this, "_heatmap2d", null);
646
-
647
697
  (0,defineProperty/* default */.Z)(this, "_heatmap2dCountLayer", null);
648
-
649
698
  (0,defineProperty/* default */.Z)(this, "heatmapData", null);
650
-
651
699
  (0,defineProperty/* default */.Z)(this, "_heatmapHandler", null);
652
-
653
700
  this._viewer = scenceView._viewer;
654
701
  this._options = options;
655
- this._viewer.scene.globe.depthTestAgainstTerrain = true; // 地图标注对象
656
-
702
+ this._viewer.scene.globe.depthTestAgainstTerrain = true;
703
+ // 地图标注对象
657
704
  this._mouseLabel = new Cesium.Kq3dHtmlTag(this._viewer, {
658
705
  position: new Cesium.Cartesian3(0, 0, 0),
659
706
  html: `<div>
@@ -669,23 +716,20 @@ class Heatmap3dViewModel {
669
716
  anchor: [0, -138],
670
717
  noEvent: true,
671
718
  visible: false
672
- }); // 地图拾取事件,交互展示
673
-
719
+ });
720
+ // 地图拾取事件,交互展示
674
721
  let that = this;
675
722
  this._heatmapHandler = new window.Cesium.ScreenSpaceEventHandler(this._viewer.canvas);
676
-
677
723
  this._heatmapHandler.setInputAction(function (movement) {
678
724
  var worldPosition = that._viewer.scene.pickPosition(movement.position);
679
-
680
725
  if (worldPosition) {
681
726
  if (!that._heatmap && !that._heatmap2d) return;
682
727
  if (!that._options.isShow) return;
683
728
  that._mouseLabel.position = worldPosition;
684
729
  var lonlat = Cesium.Cartographic.fromCartesian(worldPosition);
685
730
  var lon = Cesium.Math.toDegrees(lonlat.longitude),
686
- lat = Cesium.Math.toDegrees(lonlat.latitude);
731
+ lat = Cesium.Math.toDegrees(lonlat.latitude);
687
732
  var val = 0;
688
-
689
733
  if (that._options.heatmapType == "3D") {
690
734
  val = String(that._heatmap.getValueAt({
691
735
  lng: lon,
@@ -697,17 +741,14 @@ class Heatmap3dViewModel {
697
741
  lat: lat
698
742
  }));
699
743
  }
700
-
701
744
  (0,util_.setInnerHtml)(document.getElementById('mouse_lonlat'), `<p>${that.language['longitude'] || "longitude"}:${lon.toFixed(5)}</p><p>${that.language['latitude'] || "latitude"}:${lat.toFixed(5)}</p><p>${that.language['heatValue'] || "value"}:${val}</p>`);
702
-
703
745
  that._mouseLabel.setVisible(true);
704
746
  } else {
705
747
  that._mouseLabel.setVisible(false);
706
748
  }
707
749
  }, Cesium.ScreenSpaceEventType.LEFT_CLICK);
708
- } // 创建三维热力图对象
709
-
710
-
750
+ }
751
+ // 创建三维热力图对象
711
752
  initHeatmap3d(heatmapData) {
712
753
  this._heatmap = new Cesium.Kq3dHeatmap3D({
713
754
  xField: 'lng',
@@ -723,11 +764,8 @@ class Heatmap3dViewModel {
723
764
  show: this._options.heatmapType == "3D" ? this._options.isShow : false
724
765
  });
725
766
  if (this._options.gradient) this._heatmap.gradient = this._options.gradient;
726
-
727
767
  this._viewer.scene.primitives.add(this._heatmap);
728
-
729
768
  this._heatmap && this._heatmap.setData(heatmapData);
730
-
731
769
  if (this._heatmap) {
732
770
  this._heatmap.readyPromise.then(() => {
733
771
  this._viewer.camera.flyTo({
@@ -735,9 +773,8 @@ class Heatmap3dViewModel {
735
773
  });
736
774
  });
737
775
  }
738
- } // 创建二维热力图对象
739
-
740
-
776
+ }
777
+ // 创建二维热力图对象
741
778
  initHeatmap2d(heatmapData) {
742
779
  this._heatmap2d = new Cesium.Kq3dHeatmap2D({
743
780
  xField: 'lng',
@@ -749,9 +786,7 @@ class Heatmap3dViewModel {
749
786
  blur: 1.0,
750
787
  gradient: this._options.gradient
751
788
  });
752
-
753
789
  this._heatmap2d.setData(heatmapData);
754
-
755
790
  let extent = this._heatmap2d.extent;
756
791
  let pv = new Cesium.SingleTileImageryProvider({
757
792
  url: this._heatmap2d.toDataURL(),
@@ -761,15 +796,12 @@ class Heatmap3dViewModel {
761
796
  alpha: this._options.transparents,
762
797
  show: this._options.heatmapType == "2D" ? this._options.isShow : false
763
798
  });
764
-
765
799
  this._viewer.imageryLayers.add(this._heatmap2dCountLayer);
766
-
767
800
  this._viewer.camera.flyTo({
768
801
  destination: Cesium.Rectangle.fromDegrees(extent[0], extent[1], extent[2], extent[3])
769
802
  });
770
- } // 切换二维数据
771
-
772
-
803
+ }
804
+ // 切换二维数据
773
805
  changeHeatmap2d() {
774
806
  if (this._options.gradient) this._heatmap2d.gradient = this._options.gradient;
775
807
  if (this._options.radius) this._heatmap2d.radius = this._options.radius;
@@ -783,27 +815,22 @@ class Heatmap3dViewModel {
783
815
  alpha: this._options.transparents,
784
816
  show: this._options.heatmapType == "2D" ? true : false
785
817
  });
786
-
787
818
  this._viewer.imageryLayers.add(this._heatmap2dCountLayer);
788
- } // 设置颜色渲染
789
-
790
-
819
+ }
820
+ // 设置颜色渲染
791
821
  setColorArray(val) {
792
822
  this._options.gradient = val;
793
823
  if (this._heatmap) this._heatmap.gradient = val;
794
824
  if (this._heatmap2d) this.changeHeatmap2d();
795
- } // 参数改变
796
-
797
-
825
+ }
826
+ // 参数改变
798
827
  paramsChanged(key, val) {
799
828
  this._options[key] = val;
800
829
  if (!this._heatmap) return;
801
830
  if (!this._heatmap2dCountLayer) return;
802
-
803
831
  switch (key) {
804
832
  case "heatmapType":
805
833
  this._mouseLabel.setVisible(false);
806
-
807
834
  if (this._options.heatmapType == "3D") {
808
835
  this._viewer.scene.highDynamicRange = false;
809
836
  this._viewer.scene.globe.showGroundAtmosphere = true;
@@ -815,87 +842,60 @@ class Heatmap3dViewModel {
815
842
  this._heatmap.show = false;
816
843
  this._heatmap2dCountLayer.show = this._options.isShow;
817
844
  }
818
-
819
845
  break;
820
-
821
846
  case "radius":
822
847
  this._mouseLabel.setVisible(false);
823
-
824
848
  this._heatmap[key] = Number(val);
825
-
826
849
  if (this._heatmap.dynamic) {
827
850
  this._heatmap.dynamic = false;
828
851
  }
829
-
830
852
  this.changeHeatmap2d();
831
853
  break;
832
-
833
854
  case "height":
834
855
  this._mouseLabel.setVisible(false);
835
-
836
856
  this._heatmap[key] = Number(val);
837
-
838
857
  if (this._heatmap.dynamic) {
839
858
  this._heatmap.dynamic = false;
840
859
  }
841
-
842
860
  break;
843
-
844
861
  case "transparents":
845
862
  this._heatmap.alpha = Number(val);
846
863
  this._heatmap2dCountLayer.alpha = Number(val);
847
864
  break;
848
-
849
865
  case "heightRatio":
850
866
  this._mouseLabel.setVisible(false);
851
-
852
867
  this._heatmap.heightRatio = Number(val);
853
868
  break;
854
-
855
869
  case "isShow":
856
870
  if (this._options.heatmapType == "3D") {
857
871
  this._heatmap.show = val;
858
872
  } else if (this._options.heatmapType == "2D") {
859
873
  this._heatmap2dCountLayer.show = val;
860
874
  }
861
-
862
875
  this._mouseLabel.setVisible(false);
863
-
864
876
  break;
865
-
866
877
  case "isFollowingPerspective":
867
878
  this._heatmap.dynamic = val;
868
-
869
879
  this._mouseLabel.setVisible(false);
870
-
871
880
  break;
872
-
873
881
  case "isGround":
874
882
  this._heatmap.clampToGround = val;
875
-
876
883
  this._mouseLabel.setVisible(false);
877
-
878
884
  break;
879
-
880
885
  case "valueField":
881
886
  this.clear();
882
-
883
887
  if (this.heatmapData) {
884
888
  this.initHeatmap3d(this.heatmapData);
885
889
  this.initHeatmap2d(this.heatmapData);
886
890
  }
887
-
888
891
  break;
889
-
890
892
  default:
891
893
  break;
892
894
  }
893
- } // 加载
894
-
895
-
895
+ }
896
+ // 加载
896
897
  start() {
897
898
  this.clear();
898
-
899
899
  if (this.heatmapData) {
900
900
  this.initHeatmap3d(this.heatmapData);
901
901
  this.initHeatmap2d(this.heatmapData);
@@ -907,31 +907,23 @@ class Heatmap3dViewModel {
907
907
  });
908
908
  return;
909
909
  }
910
- } //清除全部结果
911
-
912
-
910
+ }
911
+ //清除全部结果
913
912
  clear() {
914
913
  this._mouseLabel.setVisible(false);
915
-
916
914
  if (this._heatmap) {
917
915
  this._viewer.scene.primitives.remove(this._heatmap);
918
-
919
916
  this._heatmap = null;
920
917
  }
921
-
922
918
  if (this._heatmap2d) this._heatmap2d = null;
923
919
  if (this._heatmap2dCountLayer) this._viewer.imageryLayers.remove(this._heatmap2dCountLayer, true);
924
- } //销毁
925
-
926
-
920
+ }
921
+ //销毁
927
922
  destroy() {
928
923
  this.clear();
929
-
930
924
  this._mouseLabel.destroy();
931
-
932
925
  this._heatmapHandler && this._heatmapHandler.destroy();
933
926
  }
934
-
935
927
  }
936
928
  // EXTERNAL MODULE: external "@element-plus/icons-vue"
937
929
  var icons_vue_ = __webpack_require__(8422);
@@ -941,27 +933,22 @@ var client_icons_vue_ = __webpack_require__(348);
941
933
  var vue_i18n_cjs_js_ = __webpack_require__(7080);
942
934
  ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/webgl/heatmap3d/CustomColorPickerSlider.vue?vue&type=script&setup=true&lang=js
943
935
 
944
-
945
936
  const _withScopeId = n => ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.pushScopeId)("data-v-c771bfde"), n = n(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.popScopeId)(), n);
946
-
947
937
  const _hoisted_1 = /*#__PURE__*/_withScopeId(() => /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
948
938
  class: "arrow"
949
- }, null, -1
950
- /* HOISTED */
951
- ));
952
-
939
+ }, null, -1 /* HOISTED */));
953
940
 
954
941
  const rangeMin = -5;
955
942
  /* harmony default export */ var CustomColorPickerSlidervue_type_script_setup_true_lang_js = ({
956
943
  __name: 'CustomColorPickerSlider',
957
944
  props: ["width", "color", "percentage", "id"],
958
945
  emits: ["updatePercentage", "updateColor", "deleteColorSlider"],
959
-
960
946
  setup(__props, {
961
947
  emit
962
948
  }) {
963
- const props = __props; // eslint-disable-next-line vue/no-setup-props-destructure
949
+ const props = __props;
964
950
 
951
+ // eslint-disable-next-line vue/no-setup-props-destructure
965
952
  const initId = props.id;
966
953
  const initColor = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(props.color);
967
954
  const rangeMax = props.width - 5;
@@ -970,25 +957,27 @@ const rangeMin = -5;
970
957
 
971
958
  let offsetX = 0;
972
959
  let isDragging = false; // 是否拖动
973
-
974
960
  let mouseDownX = 0; // 通过拖动的距离,判断是拖动还是点击
975
961
 
976
962
  function handleMouseDown(event) {
977
963
  isDragging = true;
978
964
  offsetX = event.clientX - position.value;
979
- mouseDownX = event.clientX; // 监听mousemove、mouseup事件 注意是在document上监听
965
+ mouseDownX = event.clientX;
980
966
 
967
+ // 监听mousemove、mouseup事件 注意是在document上监听
981
968
  document.addEventListener("mousemove", handleMouseMove);
982
- document.addEventListener("mouseup", handleMouseUp); // 阻止了默认行为,防止出现not-allowed的光标
969
+ document.addEventListener("mouseup", handleMouseUp);
983
970
 
971
+ // 阻止了默认行为,防止出现not-allowed的光标
984
972
  event.preventDefault();
985
- } // 处理MouseMove
986
-
973
+ }
987
974
 
975
+ // 处理MouseMove
988
976
  function handleMouseMove(event) {
989
977
  if (isDragging) {
990
- position.value = Math.min(Math.max(event.clientX - offsetX, rangeMin), rangeMax); // 拖动的过程中,不断改变percentage
978
+ position.value = Math.min(Math.max(event.clientX - offsetX, rangeMin), rangeMax);
991
979
 
980
+ // 拖动的过程中,不断改变percentage
992
981
  const percentage = (position.value + Math.abs(rangeMin)) / (rangeMax - rangeMin) * 100;
993
982
  emit("updatePercentage", {
994
983
  percentage: percentage,
@@ -996,16 +985,16 @@ const rangeMin = -5;
996
985
  });
997
986
  }
998
987
  }
999
-
1000
988
  function handleMouseUp(event) {
1001
989
  if (isDragging) {
1002
- isDragging = false; // 移除mousemove、mouseup的事件监听
990
+ isDragging = false;
1003
991
 
992
+ // 移除mousemove、mouseup的事件监听
1004
993
  document.removeEventListener("mousemove", handleMouseMove);
1005
994
  document.removeEventListener("mouseup", handleMouseUp);
1006
- } // 判断是否拖动模式
1007
-
995
+ }
1008
996
 
997
+ // 判断是否拖动模式
1009
998
  if (Math.abs(event.clientX - mouseDownX) > 2) {
1010
999
  // 是拖动模式 禁止colorPicker组件弹出
1011
1000
  disabled.value = true;
@@ -1014,7 +1003,6 @@ const rangeMin = -5;
1014
1003
  }, 100);
1015
1004
  }
1016
1005
  }
1017
-
1018
1006
  function updateColor(color) {
1019
1007
  initColor.value = color;
1020
1008
  emit("updateColor", {
@@ -1022,21 +1010,17 @@ const rangeMin = -5;
1022
1010
  id: initId
1023
1011
  });
1024
1012
  }
1025
-
1026
1013
  function deleteColorSlider() {
1027
1014
  emit("deleteColorSlider", {
1028
1015
  id: initId
1029
1016
  });
1030
1017
  }
1031
-
1032
1018
  function handleClick(event) {
1033
1019
  // 阻止滑块上的点击事件冒泡
1034
1020
  event.stopPropagation();
1035
1021
  }
1036
-
1037
1022
  return (_ctx, _cache) => {
1038
1023
  const _component_kq_color_picker = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-color-picker");
1039
-
1040
1024
  return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", {
1041
1025
  class: "cs",
1042
1026
  style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)({
@@ -1049,17 +1033,12 @@ const rangeMin = -5;
1049
1033
  "onUpdate:modelValue": _cache[0] || (_cache[0] = $event => initColor.value = $event),
1050
1034
  onActiveChange: updateColor,
1051
1035
  disabled: disabled.value
1052
- }, null, 8
1053
- /* PROPS */
1054
- , ["modelValue", "disabled"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
1036
+ }, null, 8 /* PROPS */, ["modelValue", "disabled"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
1055
1037
  class: "delete",
1056
1038
  onClick: deleteColorSlider
1057
- }, "x")], 36
1058
- /* STYLE, HYDRATE_EVENTS */
1059
- );
1039
+ }, "x")], 36 /* STYLE, HYDRATE_EVENTS */);
1060
1040
  };
1061
1041
  }
1062
-
1063
1042
  });
1064
1043
  ;// CONCATENATED MODULE: ./src/webgl/heatmap3d/CustomColorPickerSlider.vue?vue&type=script&setup=true&lang=js
1065
1044
 
@@ -1100,7 +1079,6 @@ const __exports__ = /*#__PURE__*/(0,exportHelper/* default */.Z)(CustomColorPick
1100
1079
 
1101
1080
 
1102
1081
  const CustomColorPickervue_type_script_setup_true_lang_js_withScopeId = n => (_pushScopeId("data-v-b1608504"), n = n(), _popScopeId(), n);
1103
-
1104
1082
  const CustomColorPickervue_type_script_setup_true_lang_js_hoisted_1 = {
1105
1083
  class: "gp"
1106
1084
  };
@@ -1112,107 +1090,99 @@ const width = 257;
1112
1090
  __name: 'CustomColorPicker',
1113
1091
  props: ["data"],
1114
1092
  emits: ["color-changed"],
1115
-
1116
1093
  setup(__props, {
1117
1094
  emit
1118
1095
  }) {
1119
- const props = __props; // 宽度
1096
+ const props = __props;
1120
1097
 
1098
+ // 宽度
1121
1099
  const items = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(props.data);
1122
- let backgroundImage = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(updateBackgroundImage()); // 更新色带条
1100
+ let backgroundImage = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(updateBackgroundImage());
1123
1101
 
1102
+ // 更新色带条
1124
1103
  function updateBackgroundImage() {
1125
1104
  let style = [];
1126
-
1127
1105
  for (let i = 0; i < items.value.length; i++) {
1128
1106
  const item = items.value[i];
1129
1107
  style.push(`${item.color} ${item.percentage}%`);
1130
1108
  }
1131
-
1132
1109
  return `background-image: linear-gradient(90deg, ${style.toString()})`;
1133
- } // 更新颜色百分比
1134
-
1110
+ }
1135
1111
 
1112
+ // 更新颜色百分比
1136
1113
  function updatePercentage(args) {
1137
1114
  const {
1138
1115
  percentage,
1139
1116
  id
1140
1117
  } = args;
1141
-
1142
1118
  for (let i = 0; i < items.value.length; i++) {
1143
1119
  if (items.value[i].id == id) {
1144
1120
  items.value[i].percentage = percentage;
1145
1121
  break;
1146
1122
  }
1147
- } // 重新排序数组
1148
-
1123
+ }
1149
1124
 
1125
+ // 重新排序数组
1150
1126
  items.value.sort((a, b) => a.percentage - b.percentage);
1151
1127
  backgroundImage.value = updateBackgroundImage();
1152
1128
  emit("color-changed", items.value);
1153
- } // 更新颜色
1154
-
1129
+ }
1155
1130
 
1131
+ // 更新颜色
1156
1132
  function updateColor(args) {
1157
1133
  const {
1158
1134
  color,
1159
1135
  id
1160
1136
  } = args;
1161
-
1162
1137
  for (let i = 0; i < items.value.length; i++) {
1163
1138
  if (items.value[i].id == id) {
1164
1139
  items.value[i].color = color;
1165
1140
  break;
1166
1141
  }
1167
- } // 重新排序数组
1168
-
1142
+ }
1169
1143
 
1144
+ // 重新排序数组
1170
1145
  items.value.sort((a, b) => a.percentage - b.percentage);
1171
1146
  backgroundImage.value = updateBackgroundImage();
1172
1147
  emit("color-changed", items.value);
1173
- } // 删除色块
1174
-
1148
+ }
1175
1149
 
1150
+ // 删除色块
1176
1151
  function deleteColorSlider(args) {
1177
1152
  if (items.value.length <= 2) {
1178
1153
  return;
1179
1154
  }
1180
-
1181
1155
  const {
1182
1156
  id
1183
1157
  } = args;
1184
-
1185
1158
  for (let i = 0; i < items.value.length; i++) {
1186
1159
  if (items.value[i].id == id) {
1187
1160
  items.value.splice(i, 1);
1188
1161
  break;
1189
1162
  }
1190
1163
  }
1191
-
1192
1164
  backgroundImage.value = updateBackgroundImage();
1193
1165
  emit("color-changed", items.value);
1194
- } // 增加色块
1195
-
1166
+ }
1196
1167
 
1168
+ // 增加色块
1197
1169
  function addColorSlider(event) {
1198
1170
  items.value.push({
1199
1171
  id: (0,util_.guid)(),
1200
1172
  color: "#0000FF",
1201
1173
  percentage: event.offsetX / width * 100
1202
- }); // 重新排序数组
1174
+ });
1203
1175
 
1176
+ // 重新排序数组
1204
1177
  items.value.sort((a, b) => a.percentage - b.percentage);
1205
1178
  backgroundImage.value = updateBackgroundImage();
1206
1179
  emit("color-changed", items.value);
1207
1180
  }
1208
-
1209
1181
  return (_ctx, _cache) => {
1210
1182
  return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", CustomColorPickervue_type_script_setup_true_lang_js_hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
1211
1183
  class: "palette",
1212
1184
  style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(backgroundImage))
1213
- }, null, 4
1214
- /* STYLE */
1215
- ), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
1185
+ }, null, 4 /* STYLE */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
1216
1186
  class: "csh",
1217
1187
  onClick: addColorSlider
1218
1188
  }, [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(true), (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)(items.value, item => {
@@ -1225,15 +1195,10 @@ const width = 257;
1225
1195
  onUpdatePercentage: updatePercentage,
1226
1196
  onUpdateColor: updateColor,
1227
1197
  onDeleteColorSlider: deleteColorSlider
1228
- }, null, 8
1229
- /* PROPS */
1230
- , ["color", "id", "percentage"]);
1231
- }), 128
1232
- /* KEYED_FRAGMENT */
1233
- ))])]);
1198
+ }, null, 8 /* PROPS */, ["color", "id", "percentage"]);
1199
+ }), 128 /* KEYED_FRAGMENT */))])]);
1234
1200
  };
1235
1201
  }
1236
-
1237
1202
  });
1238
1203
  ;// CONCATENATED MODULE: ./src/webgl/heatmap3d/CustomColorPicker.vue?vue&type=script&setup=true&lang=js
1239
1204
 
@@ -1268,6 +1233,13 @@ const CustomColorPicker_exports_ = /*#__PURE__*/(0,exportHelper/* default */.Z)(
1268
1233
  ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/webgl/heatmap3d/Heatmap3d.vue?vue&type=script&setup=true&lang=js
1269
1234
 
1270
1235
 
1236
+
1237
+
1238
+
1239
+
1240
+
1241
+
1242
+
1271
1243
  const Heatmap3dvue_type_script_setup_true_lang_js_hoisted_1 = {
1272
1244
  class: "kq3d-heatmap-box"
1273
1245
  };
@@ -1304,7 +1276,6 @@ const __default__ = {
1304
1276
  type: Boolean,
1305
1277
  default: true
1306
1278
  },
1307
-
1308
1279
  /**
1309
1280
  * 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
1310
1281
  */
@@ -1334,7 +1305,6 @@ const __default__ = {
1334
1305
  default: true
1335
1306
  }
1336
1307
  },
1337
-
1338
1308
  setup(__props, {
1339
1309
  expose: __expose
1340
1310
  }) {
@@ -1344,7 +1314,8 @@ const __default__ = {
1344
1314
  } = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
1345
1315
  let currentLang = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
1346
1316
  let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(proxy.$i18n.global.messages[proxy.$i18n.global.locale]["webgl"]);
1347
- let weightFields = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([]); // 获取组件传参
1317
+ let weightFields = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([]);
1318
+ // 获取组件传参
1348
1319
 
1349
1320
  let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
1350
1321
  collapseValue: props.settingParams && props.settingParams.collapseValue || ((props.settingParams && props.settingParams.collapseValue) == '' ? "" : "setting"),
@@ -1382,15 +1353,17 @@ const __default__ = {
1382
1353
  colorMode: props.settingParams && props.settingParams.colorMode || 1,
1383
1354
  // 1:预设 2:自定义
1384
1355
  colorRamp: props.settingParams && props.settingParams.colorRamp || 0 //色带索引,0-16
1385
-
1386
1356
  });
1387
- let viewModel = null; // 组件容器Ref
1357
+ let viewModel = null;
1388
1358
 
1389
- let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
1359
+ // 组件容器Ref
1360
+ let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
1390
1361
 
1362
+ // 生成组件默认header
1391
1363
  let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
1392
- let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(); // 国际化
1364
+ let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
1393
1365
 
1366
+ // 国际化
1394
1367
  let {
1395
1368
  locale,
1396
1369
  messages
@@ -1415,13 +1388,11 @@ const __default__ = {
1415
1388
  });
1416
1389
  currentLang.value = proxy.$i18n.locale; // 获取当前语言
1417
1390
  //父组 件ScenceView初始化完成后执行
1418
-
1419
1391
  weightFields.value = [language.value.noSet];
1420
1392
  if (!formItem.valueField) formItem.valueField = language.value.noSet;
1421
1393
  gis_utils_.utils.getWebMap(null, scenceView => {
1422
1394
  if (scenceView) {
1423
1395
  viewModel = new Heatmap3dViewModel(scenceView, formItem);
1424
-
1425
1396
  if (viewModel) {
1426
1397
  viewModel.language = language.value;
1427
1398
  let test = heatColor.value; // 触发赋值
@@ -1429,43 +1400,37 @@ const __default__ = {
1429
1400
  }
1430
1401
  });
1431
1402
  });
1403
+
1432
1404
  /**
1433
1405
  * @description 监听header生成
1434
1406
  */
1435
-
1436
1407
  const watchCreateHeaderTemp = () => {
1437
1408
  if (props.showHeaderTemp) {
1438
1409
  // 生成headerTemp
1439
1410
  headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef, headerTempTitle);
1440
1411
  }
1441
1412
  };
1442
-
1443
1413
  function selectData(file) {
1444
1414
  let url = URL.createObjectURL(file.raw);
1445
1415
  formItem.dataPath = url;
1446
- } // 参数改变
1447
-
1448
-
1416
+ }
1417
+ // 参数改变
1449
1418
  function paramsChanged(key) {
1450
1419
  viewModel && viewModel.paramsChanged(key, formItem[key]);
1451
-
1452
1420
  switch (key) {
1453
1421
  case "radius":
1454
1422
  case "height":
1455
1423
  formItem.isFollowingPerspective = false;
1456
1424
  break;
1457
-
1458
1425
  default:
1459
1426
  break;
1460
1427
  }
1461
- } // 加载
1462
-
1463
-
1428
+ }
1429
+ // 加载
1464
1430
  function startAnalysis() {
1465
1431
  getDataByPath();
1466
- } // 获取路径数据
1467
-
1468
-
1432
+ }
1433
+ // 获取路径数据
1469
1434
  function getDataByPath() {
1470
1435
  if (formItem && formItem.dataPath) {
1471
1436
  Cesium.Resource.fetchJson(formItem.dataPath).then(res => {
@@ -1478,7 +1443,6 @@ const __default__ = {
1478
1443
  });
1479
1444
  return;
1480
1445
  }
1481
-
1482
1446
  let heatmapArr = [];
1483
1447
  let bigArray = [];
1484
1448
  res.features.forEach(element => {
@@ -1495,11 +1459,11 @@ const __default__ = {
1495
1459
  });
1496
1460
  });
1497
1461
  let commonArr = commonValues(bigArray);
1498
- weightFields.value = [language.value.noSet].concat(commonArr); // if (!formItem.valueField) {
1462
+ weightFields.value = [language.value.noSet].concat(commonArr);
1463
+ // if (!formItem.valueField) {
1499
1464
  // formItem.valueField = commonArr[0];
1500
1465
  // paramsChanged("valueField");
1501
1466
  // }
1502
-
1503
1467
  if (viewModel) {
1504
1468
  viewModel.heatmapData = heatmapArr;
1505
1469
  viewModel.start();
@@ -1522,61 +1486,49 @@ const __default__ = {
1522
1486
  return;
1523
1487
  }
1524
1488
  }
1525
-
1526
1489
  function commonValues(bigArray) {
1527
1490
  // 如果大数组为空,直接返回空数组
1528
1491
  if (bigArray.length === 0) {
1529
1492
  return [];
1530
- } // 以第一个小数组为初始值进行比较
1531
-
1532
-
1493
+ }
1494
+ // 以第一个小数组为初始值进行比较
1533
1495
  let common = [...bigArray[0]];
1534
-
1535
1496
  for (let i = 1; i < bigArray.length; i++) {
1536
1497
  common = common.filter(item => bigArray[i].includes(item));
1537
1498
  }
1538
-
1539
1499
  return common;
1540
- } // 获取对象键列表
1541
-
1542
-
1500
+ }
1501
+ // 获取对象键列表
1543
1502
  function getValidKeysAndValues(obj) {
1544
1503
  const validKeys = [];
1545
1504
  const newObj = {};
1546
-
1547
1505
  for (const key in obj) {
1548
1506
  const value = obj[key];
1549
-
1550
1507
  if (!isNaN(value) && value > 0) {
1551
1508
  validKeys.push(key);
1552
1509
  newObj[key] = value;
1553
1510
  }
1554
1511
  }
1555
-
1556
1512
  return {
1557
1513
  validKeys,
1558
1514
  newObj
1559
1515
  };
1560
- } // 预设的色带
1561
-
1562
-
1563
- const colorData = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([["#F0EDB6", "#E0831F", "#910909"], ["#80FFFF", "#2EA7F2", "#000068"], ["#9999FF", "#99FFFF", "#FF9999", "#FFFF99"], ["#9766BF", "#C9ADAD", "#B5ADDD", "#93A9DD", "#74A9E1"], ["#0000FF", "#00FFFF", "#00FF00", "#FFFF00", "#FF0000"], ["#814BAB", "#821498", "#D53448", "#FDD944", "#FFFFFF"], ["#636CEA", "#1B1DD5", "#BE1C4D", "#F79390", "#FFFFCC"], ["#7FC97F", "#BEAED4", "#FDC086", "#FFFF99", "#386CB0", "#70027F", "#BF5B17"], ["#A6CEE3", "#1F78B4", "#B2DF8A", "#33A02C", "#FB9A99", "#D2212D", "#FDBF6F"], ["#E41A1C", "#377EB8", "#4DAF4A", "#984EA3", "#FF7F00", "#FFFF33", "#A65628"], ["#D73027", "#FC8D59", "#FEE08B", "#FFFFBF", "#D9EF8B", "#91CF60", "#1A9850"], ["#D53E4F", "#FC8D59", "#FEE08B", "#FFFFBF", "#E6F598", "#99D594", "#3288BD"], ["#D73027", "#FC8D59", "#FEE090", "#FFFFBF", "#E0F3F8", "#91BFDB", "#4575B4"], ["#B2182B", "#EF8A62", "#FDDBC7", "#FFFFFF", "#E0E0E0", "#999999", "#4D4D4D"], ["#E9F013", "#B3B3B3", "#408000", "#000080", "#0D3069", "#ABABAB", "#FFFCFF"], ["#B0B0B0", "#0000FF", "#00A6FF", "#00FF00", "#00FFFF", "#FF0000", "#FFA600", "#FF00FF", "#0000FF"], ["#531DAB", "#2F54EB", "#40A9FF", "#5CDBD3", "#B7EB8F", "#FFE58F", "#FFC069", "#FF7A45", "#F53B44", "#A8071A"]]); // 自定义的颜色
1564
-
1516
+ }
1517
+ // 预设的色带
1518
+ const colorData = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([["#F0EDB6", "#E0831F", "#910909"], ["#80FFFF", "#2EA7F2", "#000068"], ["#9999FF", "#99FFFF", "#FF9999", "#FFFF99"], ["#9766BF", "#C9ADAD", "#B5ADDD", "#93A9DD", "#74A9E1"], ["#0000FF", "#00FFFF", "#00FF00", "#FFFF00", "#FF0000"], ["#814BAB", "#821498", "#D53448", "#FDD944", "#FFFFFF"], ["#636CEA", "#1B1DD5", "#BE1C4D", "#F79390", "#FFFFCC"], ["#7FC97F", "#BEAED4", "#FDC086", "#FFFF99", "#386CB0", "#70027F", "#BF5B17"], ["#A6CEE3", "#1F78B4", "#B2DF8A", "#33A02C", "#FB9A99", "#D2212D", "#FDBF6F"], ["#E41A1C", "#377EB8", "#4DAF4A", "#984EA3", "#FF7F00", "#FFFF33", "#A65628"], ["#D73027", "#FC8D59", "#FEE08B", "#FFFFBF", "#D9EF8B", "#91CF60", "#1A9850"], ["#D53E4F", "#FC8D59", "#FEE08B", "#FFFFBF", "#E6F598", "#99D594", "#3288BD"], ["#D73027", "#FC8D59", "#FEE090", "#FFFFBF", "#E0F3F8", "#91BFDB", "#4575B4"], ["#B2182B", "#EF8A62", "#FDDBC7", "#FFFFFF", "#E0E0E0", "#999999", "#4D4D4D"], ["#E9F013", "#B3B3B3", "#408000", "#000080", "#0D3069", "#ABABAB", "#FFFCFF"], ["#B0B0B0", "#0000FF", "#00A6FF", "#00FF00", "#00FFFF", "#FF0000", "#FFA600", "#FF00FF", "#0000FF"], ["#531DAB", "#2F54EB", "#40A9FF", "#5CDBD3", "#B7EB8F", "#FFE58F", "#FFC069", "#FF7A45", "#F53B44", "#A8071A"]]);
1519
+ // 自定义的颜色
1565
1520
  const customColors = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.computed)({
1566
1521
  get() {
1567
1522
  const custom = props.settingParams && props.settingParams.custom;
1568
-
1569
1523
  if (!custom || custom.length == 0) {
1570
1524
  return getCustomColors(colorData.value[formItem.colorRamp]);
1571
1525
  } else {
1572
1526
  return custom;
1573
1527
  }
1574
1528
  },
1575
-
1576
1529
  set(value) {
1577
1530
  regroupColors();
1578
1531
  }
1579
-
1580
1532
  });
1581
1533
  const heatColor = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.computed)({
1582
1534
  get() {
@@ -1586,19 +1538,14 @@ const __default__ = {
1586
1538
  } else {
1587
1539
  onChangeColorRamp();
1588
1540
  }
1589
-
1590
1541
  return heatColor.value;
1591
1542
  },
1592
-
1593
1543
  set(value) {
1594
1544
  viewModel && viewModel.setColorArray(value);
1595
1545
  }
1596
-
1597
1546
  });
1598
-
1599
- function getHeatColor() {} // 重组颜色渲染对象
1600
-
1601
-
1547
+ function getHeatColor() {}
1548
+ // 重组颜色渲染对象
1602
1549
  function regroupColors() {
1603
1550
  let obj = {};
1604
1551
  customColors.value.forEach(element => {
@@ -1606,30 +1553,25 @@ const __default__ = {
1606
1553
  });
1607
1554
  heatColor.value = obj;
1608
1555
  }
1609
-
1610
1556
  function onChangeColorRamp() {
1611
1557
  // 固定的开头
1612
1558
  const colors = colorData.value[formItem.colorRamp];
1613
1559
  const len = colors.length;
1614
1560
  const delta = 1 / len;
1615
1561
  let ramp = {};
1616
-
1617
1562
  for (let i = 0; i < len - 1; i++) {
1618
1563
  ramp[delta * (i + 1)] = colors[i];
1619
1564
  }
1620
-
1621
1565
  ramp[1] = colors[len - 1];
1622
1566
  heatColor.value = {
1623
1567
  0: "rgba(0, 0, 0, 0)",
1624
1568
  ...ramp
1625
1569
  };
1626
1570
  }
1627
-
1628
1571
  function getCustomColors(colors) {
1629
1572
  let custom = [];
1630
1573
  const len = colors.length;
1631
1574
  const delta = 1 / (len - 1);
1632
-
1633
1575
  for (let i = 0; i < len; i++) {
1634
1576
  custom.push({
1635
1577
  id: (0,util_.guid)(),
@@ -1637,86 +1579,58 @@ const __default__ = {
1637
1579
  percentage: i * delta * 100
1638
1580
  });
1639
1581
  }
1640
-
1641
1582
  return custom;
1642
1583
  }
1643
-
1644
1584
  function colorChanged(items) {
1645
1585
  let ramp = {};
1646
-
1647
1586
  for (let i = 0; i < items.length; i++) {
1648
1587
  if (items[i].percentage == 0) {
1649
1588
  items[i].percentage = 1;
1650
1589
  }
1651
-
1652
1590
  ramp[items[i].percentage / 100] = items[i].color;
1653
1591
  }
1654
-
1655
1592
  heatColor.value = {
1656
1593
  0: "rgba(0, 0, 0, 0)",
1657
1594
  ...ramp
1658
1595
  };
1659
1596
  }
1660
-
1661
1597
  function generateColorStyle(colors) {
1662
1598
  return `background-image: linear-gradient(90deg, ${colors.toString()})`;
1663
- } // 反转色带的颜色
1664
-
1665
-
1599
+ }
1600
+ // 反转色带的颜色
1666
1601
  function onClickReverseRamp(colors) {
1667
1602
  colors = colors.reverse();
1668
1603
  onChangeColorRamp();
1669
- } // 清除
1670
-
1671
-
1604
+ }
1605
+ // 清除
1672
1606
  function clearResult() {
1673
1607
  viewModel && viewModel.clear();
1674
- } // 销毁
1675
-
1608
+ }
1676
1609
 
1610
+ // 销毁
1677
1611
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
1678
1612
  viewModel && viewModel.destroy();
1679
1613
  });
1680
-
1681
1614
  __expose({});
1682
-
1683
1615
  return (_ctx, _cache) => {
1684
1616
  const _component_kq_col = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-col");
1685
-
1686
1617
  const _component_kq_icon = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-icon");
1687
-
1688
1618
  const _component_kq_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-button");
1689
-
1690
1619
  const _component_kq_upload = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-upload");
1691
-
1692
1620
  const _component_kq_input = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input");
1693
-
1694
1621
  const _component_kq_row = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-row");
1695
-
1696
1622
  const _component_kq_radio = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-radio");
1697
-
1698
1623
  const _component_kq_radio_group = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-radio-group");
1699
-
1700
1624
  const _component_kq_option = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-option");
1701
-
1702
1625
  const _component_kq_select = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-select");
1703
-
1704
1626
  const _component_kq_form_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form-item");
1705
-
1706
1627
  const _component_kq_radio_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-radio-button");
1707
-
1708
1628
  const _component_kq_slider = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-slider");
1709
-
1710
1629
  const _component_kq_input_number = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input-number");
1711
-
1712
1630
  const _component_kq_switch = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-switch");
1713
-
1714
1631
  const _component_kq_form = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form");
1715
-
1716
1632
  const _component_kq_collapse_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-collapse-item");
1717
-
1718
1633
  const _component_kq_collapse = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-collapse");
1719
-
1720
1634
  return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
1721
1635
  class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-heatmap", {
1722
1636
  'kq-box-shadow': __props.showShadow
@@ -1727,21 +1641,15 @@ const __default__ = {
1727
1641
  key: 0,
1728
1642
  ref_key: "headerTempRef",
1729
1643
  ref: headerTempRef
1730
- }, null, 512
1731
- /* NEED_PATCH */
1732
- )) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", Heatmap3dvue_type_script_setup_true_lang_js_hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
1644
+ }, null, 512 /* NEED_PATCH */)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", Heatmap3dvue_type_script_setup_true_lang_js_hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
1733
1645
  class: "rowClass"
1734
1646
  }, {
1735
1647
  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, {
1736
1648
  span: 7,
1737
1649
  class: "colClass"
1738
1650
  }, {
1739
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).dataPath), 1
1740
- /* TEXT */
1741
- )]),
1742
- _: 1
1743
- /* STABLE */
1744
-
1651
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).dataPath), 1 /* TEXT */)]),
1652
+ _: 1 /* STABLE */
1745
1653
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
1746
1654
  span: 17
1747
1655
  }, {
@@ -1762,31 +1670,17 @@ const __default__ = {
1762
1670
  size: 16
1763
1671
  }, {
1764
1672
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_icons_vue_.IconFolder2))]),
1765
- _: 1
1766
- /* STABLE */
1767
-
1673
+ _: 1 /* STABLE */
1768
1674
  })]),
1769
- _: 1
1770
- /* STABLE */
1771
-
1675
+ _: 1 /* STABLE */
1772
1676
  })]),
1773
- _: 1
1774
- /* STABLE */
1775
-
1677
+ _: 1 /* STABLE */
1776
1678
  })]),
1777
- _: 1
1778
- /* STABLE */
1779
-
1780
- }, 8
1781
- /* PROPS */
1782
- , ["modelValue", "placeholder"])]),
1783
- _: 1
1784
- /* STABLE */
1785
-
1679
+ _: 1 /* STABLE */
1680
+ }, 8 /* PROPS */, ["modelValue", "placeholder"])]),
1681
+ _: 1 /* STABLE */
1786
1682
  })]),
1787
- _: 1
1788
- /* STABLE */
1789
-
1683
+ _: 1 /* STABLE */
1790
1684
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
1791
1685
  class: "rowClass"
1792
1686
  }, {
@@ -1794,12 +1688,8 @@ const __default__ = {
1794
1688
  span: 7,
1795
1689
  class: "colClass"
1796
1690
  }, {
1797
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_3, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).heatmapType), 1
1798
- /* TEXT */
1799
- )]),
1800
- _: 1
1801
- /* STABLE */
1802
-
1691
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_3, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).heatmapType), 1 /* TEXT */)]),
1692
+ _: 1 /* STABLE */
1803
1693
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
1804
1694
  span: 17
1805
1695
  }, {
@@ -1811,43 +1701,25 @@ const __default__ = {
1811
1701
  label: "3D",
1812
1702
  onChange: _cache[2] || (_cache[2] = $event => paramsChanged('heatmapType'))
1813
1703
  }, {
1814
- 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).classic3d), 1
1815
- /* TEXT */
1816
- )]),
1817
- _: 1
1818
- /* STABLE */
1819
-
1704
+ 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).classic3d), 1 /* TEXT */)]),
1705
+ _: 1 /* STABLE */
1820
1706
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
1821
1707
  label: "2D",
1822
1708
  onChange: _cache[3] || (_cache[3] = $event => paramsChanged('heatmapType'))
1823
1709
  }, {
1824
1710
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("2D")]),
1825
- _: 1
1826
- /* STABLE */
1827
-
1711
+ _: 1 /* STABLE */
1828
1712
  })]),
1829
- _: 1
1830
- /* STABLE */
1831
-
1832
- }, 8
1833
- /* PROPS */
1834
- , ["modelValue"])]),
1835
- _: 1
1836
- /* STABLE */
1837
-
1713
+ _: 1 /* STABLE */
1714
+ }, 8 /* PROPS */, ["modelValue"])]),
1715
+ _: 1 /* STABLE */
1838
1716
  })]),
1839
- _: 1
1840
- /* STABLE */
1841
-
1717
+ _: 1 /* STABLE */
1842
1718
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
1843
1719
  class: "kq3d-heatmap-tip"
1844
1720
  }, {
1845
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).heatmapTips), 1
1846
- /* TEXT */
1847
- )]),
1848
- _: 1
1849
- /* STABLE */
1850
-
1721
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).heatmapTips), 1 /* TEXT */)]),
1722
+ _: 1 /* STABLE */
1851
1723
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
1852
1724
  "model-value": (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).collapseValue,
1853
1725
  class: "kq3d-heatmap-collapse"
@@ -1877,27 +1749,13 @@ const __default__ = {
1877
1749
  key: index,
1878
1750
  label: item,
1879
1751
  value: item
1880
- }, null, 8
1881
- /* PROPS */
1882
- , ["label", "value"]);
1883
- }), 128
1884
- /* KEYED_FRAGMENT */
1885
- ))]),
1886
- _: 1
1887
- /* STABLE */
1888
-
1889
- }, 8
1890
- /* PROPS */
1891
- , ["modelValue"])]),
1892
- _: 1
1893
- /* STABLE */
1894
-
1895
- }, 8
1896
- /* PROPS */
1897
- , ["label"])]),
1898
- _: 1
1899
- /* STABLE */
1900
-
1752
+ }, null, 8 /* PROPS */, ["label", "value"]);
1753
+ }), 128 /* KEYED_FRAGMENT */))]),
1754
+ _: 1 /* STABLE */
1755
+ }, 8 /* PROPS */, ["modelValue"])]),
1756
+ _: 1 /* STABLE */
1757
+ }, 8 /* PROPS */, ["label"])]),
1758
+ _: 1 /* STABLE */
1901
1759
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
1902
1760
  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, {
1903
1761
  label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).colorScheme
@@ -1915,45 +1773,23 @@ const __default__ = {
1915
1773
  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, {
1916
1774
  label: "1"
1917
1775
  }, {
1918
- 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).preset), 1
1919
- /* TEXT */
1920
- )]),
1921
- _: 1
1922
- /* STABLE */
1923
-
1776
+ 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).preset), 1 /* TEXT */)]),
1777
+ _: 1 /* STABLE */
1924
1778
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio_button, {
1925
1779
  label: "2"
1926
1780
  }, {
1927
- 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).customTitle), 1
1928
- /* TEXT */
1929
- )]),
1930
- _: 1
1931
- /* STABLE */
1932
-
1781
+ 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).customTitle), 1 /* TEXT */)]),
1782
+ _: 1 /* STABLE */
1933
1783
  })]),
1934
- _: 1
1935
- /* STABLE */
1936
-
1937
- }, 8
1938
- /* PROPS */
1939
- , ["modelValue"])]),
1940
- _: 1
1941
- /* STABLE */
1942
-
1784
+ _: 1 /* STABLE */
1785
+ }, 8 /* PROPS */, ["modelValue"])]),
1786
+ _: 1 /* STABLE */
1943
1787
  })]),
1944
- _: 1
1945
- /* STABLE */
1946
-
1788
+ _: 1 /* STABLE */
1947
1789
  })]),
1948
- _: 1
1949
- /* STABLE */
1950
-
1951
- }, 8
1952
- /* PROPS */
1953
- , ["label"])]),
1954
- _: 1
1955
- /* STABLE */
1956
-
1790
+ _: 1 /* STABLE */
1791
+ }, 8 /* PROPS */, ["label"])]),
1792
+ _: 1 /* STABLE */
1957
1793
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorMode == 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_row, {
1958
1794
  key: 0
1959
1795
  }, {
@@ -1979,9 +1815,7 @@ const __default__ = {
1979
1815
  prefix: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
1980
1816
  class: "color-ramp",
1981
1817
  style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)(generateColorStyle(colorData.value[(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).colorRamp]))
1982
- }, null, 4
1983
- /* STYLE */
1984
- )]),
1818
+ }, null, 4 /* STYLE */)]),
1985
1819
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(true), (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)(colorData.value, (item, index) => {
1986
1820
  return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_option, {
1987
1821
  class: "color-option",
@@ -1991,51 +1825,25 @@ const __default__ = {
1991
1825
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
1992
1826
  class: "color-ramp",
1993
1827
  style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)(generateColorStyle(item))
1994
- }, null, 4
1995
- /* STYLE */
1996
- ), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, {
1828
+ }, null, 4 /* STYLE */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, {
1997
1829
  class: "reverse",
1998
1830
  onClick: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => onClickReverseRamp(item), ["stop"])
1999
1831
  }, {
2000
1832
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.Switch))]),
2001
- _: 2
2002
- /* DYNAMIC */
2003
-
2004
- }, 1032
2005
- /* PROPS, DYNAMIC_SLOTS */
2006
- , ["onClick"])]),
2007
- _: 2
2008
- /* DYNAMIC */
2009
-
2010
- }, 1032
2011
- /* PROPS, DYNAMIC_SLOTS */
2012
- , ["value"]);
2013
- }), 128
2014
- /* KEYED_FRAGMENT */
2015
- ))]),
2016
- _: 1
2017
- /* STABLE */
2018
-
2019
- }, 8
2020
- /* PROPS */
2021
- , ["modelValue"])]),
2022
- _: 1
2023
- /* STABLE */
2024
-
1833
+ _: 2 /* DYNAMIC */
1834
+ }, 1032 /* PROPS, DYNAMIC_SLOTS */, ["onClick"])]),
1835
+ _: 2 /* DYNAMIC */
1836
+ }, 1032 /* PROPS, DYNAMIC_SLOTS */, ["value"]);
1837
+ }), 128 /* KEYED_FRAGMENT */))]),
1838
+ _: 1 /* STABLE */
1839
+ }, 8 /* PROPS */, ["modelValue"])]),
1840
+ _: 1 /* STABLE */
2025
1841
  })]),
2026
- _: 1
2027
- /* STABLE */
2028
-
1842
+ _: 1 /* STABLE */
2029
1843
  })]),
2030
- _: 1
2031
- /* STABLE */
2032
-
2033
- }, 8
2034
- /* PROPS */
2035
- , ["label"])]),
2036
- _: 1
2037
- /* STABLE */
2038
-
1844
+ _: 1 /* STABLE */
1845
+ }, 8 /* PROPS */, ["label"])]),
1846
+ _: 1 /* STABLE */
2039
1847
  })) : (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).colorMode == 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_row, {
2040
1848
  key: 1
2041
1849
  }, {
@@ -2051,26 +1859,14 @@ const __default__ = {
2051
1859
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(CustomColorPicker, {
2052
1860
  data: customColors.value,
2053
1861
  onColorChanged: colorChanged
2054
- }, null, 8
2055
- /* PROPS */
2056
- , ["data"])]),
2057
- _: 1
2058
- /* STABLE */
2059
-
1862
+ }, null, 8 /* PROPS */, ["data"])]),
1863
+ _: 1 /* STABLE */
2060
1864
  })]),
2061
- _: 1
2062
- /* STABLE */
2063
-
1865
+ _: 1 /* STABLE */
2064
1866
  })]),
2065
- _: 1
2066
- /* STABLE */
2067
-
2068
- }, 8
2069
- /* PROPS */
2070
- , ["label"])]),
2071
- _: 1
2072
- /* STABLE */
2073
-
1867
+ _: 1 /* STABLE */
1868
+ }, 8 /* PROPS */, ["label"])]),
1869
+ _: 1 /* STABLE */
2074
1870
  })) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
2075
1871
  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, {
2076
1872
  label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).radius + '(m)'
@@ -2090,12 +1886,8 @@ const __default__ = {
2090
1886
  min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRadius,
2091
1887
  max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRadius,
2092
1888
  onChange: _cache[10] || (_cache[10] = $event => paramsChanged('radius'))
2093
- }, null, 8
2094
- /* PROPS */
2095
- , ["modelValue", "step", "min", "max"])]),
2096
- _: 1
2097
- /* STABLE */
2098
-
1889
+ }, null, 8 /* PROPS */, ["modelValue", "step", "min", "max"])]),
1890
+ _: 1 /* STABLE */
2099
1891
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
2100
1892
  span: 8
2101
1893
  }, {
@@ -2107,26 +1899,14 @@ const __default__ = {
2107
1899
  step: 0.1,
2108
1900
  onChange: _cache[12] || (_cache[12] = $event => paramsChanged('radius')),
2109
1901
  "controls-position": "right"
2110
- }, null, 8
2111
- /* PROPS */
2112
- , ["modelValue", "min", "max", "step"])]),
2113
- _: 1
2114
- /* STABLE */
2115
-
1902
+ }, null, 8 /* PROPS */, ["modelValue", "min", "max", "step"])]),
1903
+ _: 1 /* STABLE */
2116
1904
  })]),
2117
- _: 1
2118
- /* STABLE */
2119
-
1905
+ _: 1 /* STABLE */
2120
1906
  })]),
2121
- _: 1
2122
- /* STABLE */
2123
-
2124
- }, 8
2125
- /* PROPS */
2126
- , ["label"])]),
2127
- _: 1
2128
- /* STABLE */
2129
-
1907
+ _: 1 /* STABLE */
1908
+ }, 8 /* PROPS */, ["label"])]),
1909
+ _: 1 /* STABLE */
2130
1910
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
2131
1911
  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, {
2132
1912
  label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).transparents
@@ -2146,12 +1926,8 @@ const __default__ = {
2146
1926
  min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minTransparents,
2147
1927
  max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxTransparents,
2148
1928
  onChange: _cache[14] || (_cache[14] = $event => paramsChanged('transparents'))
2149
- }, null, 8
2150
- /* PROPS */
2151
- , ["modelValue", "step", "min", "max"])]),
2152
- _: 1
2153
- /* STABLE */
2154
-
1929
+ }, null, 8 /* PROPS */, ["modelValue", "step", "min", "max"])]),
1930
+ _: 1 /* STABLE */
2155
1931
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
2156
1932
  span: 8
2157
1933
  }, {
@@ -2163,26 +1939,14 @@ const __default__ = {
2163
1939
  step: 0.01,
2164
1940
  onChange: _cache[16] || (_cache[16] = $event => paramsChanged('transparents')),
2165
1941
  "controls-position": "right"
2166
- }, null, 8
2167
- /* PROPS */
2168
- , ["modelValue", "min", "max", "step"])]),
2169
- _: 1
2170
- /* STABLE */
2171
-
1942
+ }, null, 8 /* PROPS */, ["modelValue", "min", "max", "step"])]),
1943
+ _: 1 /* STABLE */
2172
1944
  })]),
2173
- _: 1
2174
- /* STABLE */
2175
-
1945
+ _: 1 /* STABLE */
2176
1946
  })]),
2177
- _: 1
2178
- /* STABLE */
2179
-
2180
- }, 8
2181
- /* PROPS */
2182
- , ["label"])]),
2183
- _: 1
2184
- /* STABLE */
2185
-
1947
+ _: 1 /* STABLE */
1948
+ }, 8 /* PROPS */, ["label"])]),
1949
+ _: 1 /* STABLE */
2186
1950
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
2187
1951
  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, {
2188
1952
  label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).height + '(m)'
@@ -2202,12 +1966,8 @@ const __default__ = {
2202
1966
  min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
2203
1967
  max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
2204
1968
  onChange: _cache[18] || (_cache[18] = $event => paramsChanged('height'))
2205
- }, null, 8
2206
- /* PROPS */
2207
- , ["modelValue", "min", "max"])]),
2208
- _: 1
2209
- /* STABLE */
2210
-
1969
+ }, null, 8 /* PROPS */, ["modelValue", "min", "max"])]),
1970
+ _: 1 /* STABLE */
2211
1971
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
2212
1972
  span: 8
2213
1973
  }, {
@@ -2219,29 +1979,15 @@ const __default__ = {
2219
1979
  step: 1,
2220
1980
  onChange: _cache[20] || (_cache[20] = $event => paramsChanged('height')),
2221
1981
  "controls-position": "right"
2222
- }, null, 8
2223
- /* PROPS */
2224
- , ["modelValue", "min", "max"])]),
2225
- _: 1
2226
- /* STABLE */
2227
-
1982
+ }, null, 8 /* PROPS */, ["modelValue", "min", "max"])]),
1983
+ _: 1 /* STABLE */
2228
1984
  })]),
2229
- _: 1
2230
- /* STABLE */
2231
-
1985
+ _: 1 /* STABLE */
2232
1986
  })]),
2233
- _: 1
2234
- /* STABLE */
2235
-
2236
- }, 8
2237
- /* PROPS */
2238
- , ["label"])]),
2239
- _: 1
2240
- /* STABLE */
2241
-
2242
- }, 512
2243
- /* NEED_PATCH */
2244
- ), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).heatmapType === '3D']]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
1987
+ _: 1 /* STABLE */
1988
+ }, 8 /* PROPS */, ["label"])]),
1989
+ _: 1 /* STABLE */
1990
+ }, 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).heatmapType === '3D']]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
2245
1991
  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, {
2246
1992
  label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).heightRatio
2247
1993
  }, {
@@ -2260,12 +2006,8 @@ const __default__ = {
2260
2006
  min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeightRatio,
2261
2007
  max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeightRatio,
2262
2008
  onChange: _cache[22] || (_cache[22] = $event => paramsChanged('heightRatio'))
2263
- }, null, 8
2264
- /* PROPS */
2265
- , ["modelValue", "step", "min", "max"])]),
2266
- _: 1
2267
- /* STABLE */
2268
-
2009
+ }, null, 8 /* PROPS */, ["modelValue", "step", "min", "max"])]),
2010
+ _: 1 /* STABLE */
2269
2011
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
2270
2012
  span: 8
2271
2013
  }, {
@@ -2277,29 +2019,15 @@ const __default__ = {
2277
2019
  step: 0.1,
2278
2020
  onChange: _cache[24] || (_cache[24] = $event => paramsChanged('heightRatio')),
2279
2021
  "controls-position": "right"
2280
- }, null, 8
2281
- /* PROPS */
2282
- , ["modelValue", "min", "max", "step"])]),
2283
- _: 1
2284
- /* STABLE */
2285
-
2022
+ }, null, 8 /* PROPS */, ["modelValue", "min", "max", "step"])]),
2023
+ _: 1 /* STABLE */
2286
2024
  })]),
2287
- _: 1
2288
- /* STABLE */
2289
-
2025
+ _: 1 /* STABLE */
2290
2026
  })]),
2291
- _: 1
2292
- /* STABLE */
2293
-
2294
- }, 8
2295
- /* PROPS */
2296
- , ["label"])]),
2297
- _: 1
2298
- /* STABLE */
2299
-
2300
- }, 512
2301
- /* NEED_PATCH */
2302
- ), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).heatmapType === '3D']]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
2027
+ _: 1 /* STABLE */
2028
+ }, 8 /* PROPS */, ["label"])]),
2029
+ _: 1 /* STABLE */
2030
+ }, 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).heatmapType === '3D']]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
2303
2031
  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, {
2304
2032
  label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).isShow
2305
2033
  }, {
@@ -2317,26 +2045,14 @@ const __default__ = {
2317
2045
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).isShow,
2318
2046
  "onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).isShow = $event),
2319
2047
  onChange: _cache[26] || (_cache[26] = $event => paramsChanged('isShow'))
2320
- }, null, 8
2321
- /* PROPS */
2322
- , ["modelValue"])]),
2323
- _: 1
2324
- /* STABLE */
2325
-
2048
+ }, null, 8 /* PROPS */, ["modelValue"])]),
2049
+ _: 1 /* STABLE */
2326
2050
  })]),
2327
- _: 1
2328
- /* STABLE */
2329
-
2051
+ _: 1 /* STABLE */
2330
2052
  })]),
2331
- _: 1
2332
- /* STABLE */
2333
-
2334
- }, 8
2335
- /* PROPS */
2336
- , ["label"])]),
2337
- _: 1
2338
- /* STABLE */
2339
-
2053
+ _: 1 /* STABLE */
2054
+ }, 8 /* PROPS */, ["label"])]),
2055
+ _: 1 /* STABLE */
2340
2056
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
2341
2057
  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, {
2342
2058
  label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).isGround
@@ -2355,29 +2071,15 @@ const __default__ = {
2355
2071
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).isGround,
2356
2072
  "onUpdate:modelValue": _cache[27] || (_cache[27] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).isGround = $event),
2357
2073
  onChange: _cache[28] || (_cache[28] = $event => paramsChanged('isGround'))
2358
- }, null, 8
2359
- /* PROPS */
2360
- , ["modelValue"])]),
2361
- _: 1
2362
- /* STABLE */
2363
-
2074
+ }, null, 8 /* PROPS */, ["modelValue"])]),
2075
+ _: 1 /* STABLE */
2364
2076
  })]),
2365
- _: 1
2366
- /* STABLE */
2367
-
2077
+ _: 1 /* STABLE */
2368
2078
  })]),
2369
- _: 1
2370
- /* STABLE */
2371
-
2372
- }, 8
2373
- /* PROPS */
2374
- , ["label"])]),
2375
- _: 1
2376
- /* STABLE */
2377
-
2378
- }, 512
2379
- /* NEED_PATCH */
2380
- ), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).heatmapType === '3D']]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
2079
+ _: 1 /* STABLE */
2080
+ }, 8 /* PROPS */, ["label"])]),
2081
+ _: 1 /* STABLE */
2082
+ }, 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).heatmapType === '3D']]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
2381
2083
  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, {
2382
2084
  label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).isFollowingPerspective
2383
2085
  }, {
@@ -2395,77 +2097,36 @@ const __default__ = {
2395
2097
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).isFollowingPerspective,
2396
2098
  "onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).isFollowingPerspective = $event),
2397
2099
  onChange: _cache[30] || (_cache[30] = $event => paramsChanged('isFollowingPerspective'))
2398
- }, null, 8
2399
- /* PROPS */
2400
- , ["modelValue"])]),
2401
- _: 1
2402
- /* STABLE */
2403
-
2100
+ }, null, 8 /* PROPS */, ["modelValue"])]),
2101
+ _: 1 /* STABLE */
2404
2102
  })]),
2405
- _: 1
2406
- /* STABLE */
2407
-
2103
+ _: 1 /* STABLE */
2408
2104
  })]),
2409
- _: 1
2410
- /* STABLE */
2411
-
2412
- }, 8
2413
- /* PROPS */
2414
- , ["label"])]),
2415
- _: 1
2416
- /* STABLE */
2417
-
2418
- }, 512
2419
- /* NEED_PATCH */
2420
- ), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).heatmapType === '3D']])]),
2421
- _: 1
2422
- /* STABLE */
2423
-
2424
- }, 8
2425
- /* PROPS */
2426
- , ["label-width"])]),
2427
- _: 1
2428
- /* STABLE */
2429
-
2430
- }, 8
2431
- /* PROPS */
2432
- , ["title"])]),
2433
- _: 1
2434
- /* STABLE */
2435
-
2436
- }, 8
2437
- /* PROPS */
2438
- , ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_4, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
2105
+ _: 1 /* STABLE */
2106
+ }, 8 /* PROPS */, ["label"])]),
2107
+ _: 1 /* STABLE */
2108
+ }, 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).heatmapType === '3D']])]),
2109
+ _: 1 /* STABLE */
2110
+ }, 8 /* PROPS */, ["label-width"])]),
2111
+ _: 1 /* STABLE */
2112
+ }, 8 /* PROPS */, ["title"])]),
2113
+ _: 1 /* STABLE */
2114
+ }, 8 /* PROPS */, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_4, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
2439
2115
  onClick: _cache[31] || (_cache[31] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
2440
2116
  title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).heatmapLoad,
2441
2117
  type: "primary"
2442
2118
  }, {
2443
- 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).heatmapLoad), 1
2444
- /* TEXT */
2445
- )]),
2446
- _: 1
2447
- /* STABLE */
2448
-
2449
- }, 8
2450
- /* PROPS */
2451
- , ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
2119
+ 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).heatmapLoad), 1 /* TEXT */)]),
2120
+ _: 1 /* STABLE */
2121
+ }, 8 /* PROPS */, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
2452
2122
  onClick: _cache[32] || (_cache[32] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => clearResult(), ["stop"])),
2453
2123
  title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clearResult
2454
2124
  }, {
2455
- 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
2456
- /* TEXT */
2457
- )]),
2458
- _: 1
2459
- /* STABLE */
2460
-
2461
- }, 8
2462
- /* PROPS */
2463
- , ["title"])])])], 2
2464
- /* CLASS */
2465
- );
2125
+ 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 /* TEXT */)]),
2126
+ _: 1 /* STABLE */
2127
+ }, 8 /* PROPS */, ["title"])])])], 2 /* CLASS */);
2466
2128
  };
2467
2129
  }
2468
-
2469
2130
  }));
2470
2131
  ;// CONCATENATED MODULE: ./src/webgl/heatmap3d/Heatmap3d.vue?vue&type=script&setup=true&lang=js
2471
2132
 
@@ -2487,13 +2148,11 @@ var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
2487
2148
 
2488
2149
 
2489
2150
 
2490
-
2491
2151
  Heatmap3d.install = (Vue, opts) => {
2492
2152
  init_js_default()(Vue, opts);
2493
2153
  Vue.component(Heatmap3d.name, Heatmap3d);
2494
2154
  };
2495
2155
 
2496
-
2497
2156
  }();
2498
2157
  /******/ return __webpack_exports__;
2499
2158
  /******/ })()