@kq_npm/client3d_webgl_vue 4.5.9-beta → 4.5.11

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
@@ -11203,21 +11203,6 @@ class LayerManager {
11203
11203
  }
11204
11204
  }
11205
11205
  }, this);
11206
- //图层删除后如果没有czml图层需要隐藏时间轴
11207
- let hasCzml = false;
11208
- for (var j = 0; j < this._layerListData.length; j++) {
11209
- if (this._layerListData[j].addType == "czml") {
11210
- hasCzml = true;
11211
- break;
11212
- }
11213
- }
11214
- if (!hasCzml) {
11215
- if (this._viewer.timeline.container.style.display == 'block') {
11216
- this._viewer.bottomContainer.style.bottom = '0px';
11217
- this._viewer.timeline.container.style.display = 'none';
11218
- this._viewer.clock.shouldAnimate = false;
11219
- }
11220
- }
11221
11206
  }
11222
11207
  }
11223
11208
 
@@ -11247,6 +11232,15 @@ class LayerManager {
11247
11232
  this._viewer.scene.primitives.remove(layer);
11248
11233
  break;
11249
11234
  case "datasource":
11235
+ if (layer instanceof Cesium.CzmlDataSource) {
11236
+ // 删除czml图层时隐藏时间轴
11237
+ if (this._viewer.timeline.container.style.display == 'block') {
11238
+ this._viewer.bottomContainer.style.bottom = '0px';
11239
+ this._viewer.timeline.container.style.display = 'none';
11240
+ this._viewer.animation.container.style.display = 'none';
11241
+ this._viewer.clock.shouldAnimate = false;
11242
+ }
11243
+ }
11250
11244
  this._viewer.dataSources.remove(layer);
11251
11245
  break;
11252
11246
  case "dataflowlayer":
@@ -11382,8 +11376,8 @@ class SceneViewViewModel extends (mitt_default()) {
11382
11376
  imageryProvider: new Cesium.SingleTileImageryProvider({
11383
11377
  url: Cesium.buildModuleUrl("Assets/Textures/earth_color_low_4096.jpg")
11384
11378
  }),
11385
- animation: false,
11386
- timeline: true,
11379
+ // animation: true,
11380
+ // timeline: true,
11387
11381
  baseLayerPicker: false,
11388
11382
  geocoder: false,
11389
11383
  homeButton: false,
@@ -11590,6 +11584,13 @@ class SceneViewViewModel extends (mitt_default()) {
11590
11584
  }
11591
11585
  }
11592
11586
  }
11587
+
11588
+ /**
11589
+ * 获取底图数据
11590
+ */
11591
+ getBaseLayerData() {
11592
+ return JSON.parse(JSON.stringify(this._baseLayers));
11593
+ }
11593
11594
  /**
11594
11595
  * 获取在线底图index
11595
11596
  */
@@ -12532,15 +12533,165 @@ Compass.install = (Vue, opts) => {
12532
12533
  Vue.component(Compass.name, Compass);
12533
12534
  };
12534
12535
 
12536
+ // EXTERNAL MODULE: external "core-js/modules/esnext.iterator.map.js"
12537
+ var esnext_iterator_map_js_ = __webpack_require__(224);
12538
+ // EXTERNAL MODULE: external "core-js/modules/web.url-search-params.delete.js"
12539
+ var web_url_search_params_delete_js_ = __webpack_require__(411);
12540
+ // EXTERNAL MODULE: external "core-js/modules/web.url-search-params.has.js"
12541
+ var web_url_search_params_has_js_ = __webpack_require__(168);
12542
+ // EXTERNAL MODULE: external "core-js/modules/web.url-search-params.size.js"
12543
+ var web_url_search_params_size_js_ = __webpack_require__(217);
12535
12544
  ;// CONCATENATED MODULE: external "html2canvas"
12536
12545
  var external_html2canvas_namespaceObject = require("html2canvas");
12537
12546
  var external_html2canvas_default = /*#__PURE__*/__webpack_require__.n(external_html2canvas_namespaceObject);
12538
12547
  // EXTERNAL MODULE: ./public/libs/kqwebclient/leaflet/3rd-libs/vue3-print-nb/vue3-print-nb.umd.js
12539
12548
  var vue3_print_nb_umd = __webpack_require__(675);
12540
12549
  var vue3_print_nb_umd_default = /*#__PURE__*/__webpack_require__.n(vue3_print_nb_umd);
12550
+ // EXTERNAL MODULE: external "core-js/modules/esnext.iterator.filter.js"
12551
+ var esnext_iterator_filter_js_ = __webpack_require__(602);
12552
+ ;// CONCATENATED MODULE: ./src/webgl/clientPrint/ClientPrintViewModel.js
12553
+
12554
+
12555
+
12556
+
12557
+
12558
+ /**
12559
+ * Author: zqp
12560
+ * Date: 2022-12-06
12561
+ * Description: 客户端打印
12562
+ */
12563
+
12564
+
12565
+
12566
+
12567
+
12568
+ /**
12569
+ * @class ClientPrintViewModel
12570
+ * @classdesc 客户端打印
12571
+ * @param {string} props.mapTarget map对象渲染的div的id
12572
+ */
12573
+ class ClientPrintViewModel extends (mitt_default()) {
12574
+ constructor(mapTarget) {
12575
+ super();
12576
+ /**
12577
+ * 绑定地图的target,可为“”
12578
+ * @type {string}
12579
+ * @private
12580
+ */
12581
+ this._mapTarget = mapTarget;
12582
+ /**
12583
+ * 要打印的地图
12584
+ * @type {string}
12585
+ * @private
12586
+ */
12587
+ this.webMap = null;
12588
+ // 事件绑定this
12589
+ this._loadedSync = this._loadedSync.bind(this);
12590
+ }
12591
+ _loadedSync(e) {
12592
+ this.webMap = e;
12593
+ this.fire("getWebMap", {
12594
+ webMap: this.webMap
12595
+ });
12596
+ }
12597
+
12598
+ /**
12599
+ * 初始化打印组件,初始化地图
12600
+ */
12601
+ openPrint() {
12602
+ gis_utils_.utils.getWebMap(this._mapTarget, this._loadedSync);
12603
+ }
12604
+
12605
+ /**
12606
+ * 获取图例
12607
+ */
12608
+ getLengend() {
12609
+ let self = this;
12610
+ let maplayers = gis_utils_.mapLayerUtils.getLayerDataByLayerChecked("scencePrint");
12611
+ if (!maplayers) {
12612
+ self.fire("getLengend", {
12613
+ legend: []
12614
+ });
12615
+ return;
12616
+ }
12617
+ maplayers.forEach(layers => {
12618
+ if (layers.url.indexOf("/wmts") >= 0) {
12619
+ layers.url = (0,util_.getKQURLFromURL)(layers.url) + "/map";
12620
+ }
12621
+ });
12622
+ maplayers = maplayers.filter((layer, index, self) => {
12623
+ return !layer.isDataService;
12624
+ });
12625
+ if (maplayers.length <= 0) {
12626
+ self.fire("getLengend", {
12627
+ legend: []
12628
+ });
12629
+ return;
12630
+ }
12631
+ let serverurl = maplayers[0].url;
12632
+ let params = new KqGIS.Map.GetLegendParams({
12633
+ layerIds: maplayers.map(val => {
12634
+ return val.id;
12635
+ }),
12636
+ width: 24,
12637
+ height: 16,
12638
+ ua_token: maplayers[0].accessToken
12639
+ });
12640
+ let onSuccess = res => {
12641
+ if (res.result.resultcode === "success") {
12642
+ let legend = [];
12643
+ let order = 0;
12644
+ res.result.result.forEach(item => {
12645
+ item.items.forEach(e => {
12646
+ legend.push({
12647
+ id: item.layerId + "_" + e.legendName,
12648
+ legendName: e.legendName,
12649
+ src: `data:${item.contentType};base64,${e.data}`,
12650
+ isShow: true,
12651
+ order: order++
12652
+ });
12653
+ });
12654
+ });
12655
+ self.fire("getLengend", {
12656
+ legend
12657
+ });
12658
+ } else {
12659
+ self.fire("getLengend", {
12660
+ legend: []
12661
+ });
12662
+ }
12663
+ };
12664
+ let onFailed = error => {
12665
+ self.fire("getLengend", {
12666
+ legend: []
12667
+ });
12668
+ };
12669
+ let getLegendService = new KqGIS.Map.GetLegendService(serverurl, {
12670
+ eventListeners: {
12671
+ processCompleted: onSuccess,
12672
+ processFailed: onFailed
12673
+ }
12674
+ });
12675
+ getLegendService.processAsync(params);
12676
+ }
12677
+
12678
+ /**
12679
+ * 销毁执行方法。删除所有事件监听
12680
+ */
12681
+ destroy() {
12682
+ this.off();
12683
+ }
12684
+ }
12541
12685
  ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/clientPrint/ClientPrint.vue?vue&type=script&setup=true&lang=js
12542
12686
 
12543
12687
 
12688
+
12689
+
12690
+
12691
+
12692
+
12693
+
12694
+
12544
12695
  const ClientPrintvue_type_script_setup_true_lang_js_hoisted_1 = {
12545
12696
  class: "kq3d-client-print-wrapper",
12546
12697
  ref: "clientRef"
@@ -12558,65 +12709,124 @@ const _hoisted_5 = {
12558
12709
  class: "title"
12559
12710
  };
12560
12711
  const _hoisted_6 = {
12561
- class: "select-content-inner"
12712
+ class: "title"
12562
12713
  };
12563
12714
  const _hoisted_7 = {
12715
+ class: "title"
12716
+ };
12717
+ const _hoisted_8 = {
12718
+ class: "title"
12719
+ };
12720
+ const _hoisted_9 = {
12721
+ class: "select-content-inner"
12722
+ };
12723
+ const _hoisted_10 = {
12564
12724
  style: {
12565
12725
  "text-align": "right"
12566
12726
  }
12567
12727
  };
12568
- const _hoisted_8 = {
12728
+ const _hoisted_11 = {
12569
12729
  class: "title"
12570
12730
  };
12571
- const _hoisted_9 = {
12731
+ const _hoisted_12 = {
12572
12732
  class: "select-layer-content"
12573
12733
  };
12574
- const _hoisted_10 = {
12734
+ const _hoisted_13 = {
12575
12735
  class: "title"
12576
12736
  };
12577
- const _hoisted_11 = {
12737
+ const _hoisted_14 = {
12578
12738
  class: "select-content-inner"
12579
12739
  };
12580
- const _hoisted_12 = {
12740
+ const _hoisted_15 = {
12581
12741
  style: {
12582
12742
  "float": "right"
12583
12743
  }
12584
12744
  };
12585
- const _hoisted_13 = {
12745
+ const _hoisted_16 = {
12586
12746
  class: "clientprint-title"
12587
12747
  };
12588
- const _hoisted_14 = {
12748
+ const _hoisted_17 = {
12589
12749
  class: "title"
12590
12750
  };
12591
- const _hoisted_15 = {
12751
+ const _hoisted_18 = {
12592
12752
  class: "select-content-inner"
12593
12753
  };
12594
- const _hoisted_16 = ["placeholder"];
12595
- const _hoisted_17 = {
12754
+ const _hoisted_19 = {
12755
+ class: "title"
12756
+ };
12757
+ const _hoisted_20 = {
12758
+ class: "select-content-inner"
12759
+ };
12760
+ const _hoisted_21 = ["placeholder"];
12761
+ const _hoisted_22 = {
12596
12762
  class: "btn"
12597
12763
  };
12598
- const _hoisted_18 = {
12764
+ const _hoisted_23 = {
12765
+ class: "title"
12766
+ };
12767
+ const _hoisted_24 = {
12768
+ class: "select-content-inner"
12769
+ };
12770
+ const _hoisted_25 = {
12771
+ class: "legendTip"
12772
+ };
12773
+ const _hoisted_26 = {
12774
+ class: "legendtree"
12775
+ };
12776
+ const _hoisted_27 = {
12777
+ class: "tabPaneTreeDiv"
12778
+ };
12779
+ const _hoisted_28 = {
12780
+ class: "title"
12781
+ };
12782
+ const _hoisted_29 = {
12783
+ class: "select-content-inner"
12784
+ };
12785
+ const _hoisted_30 = {
12786
+ style: {
12787
+ "height": "300px"
12788
+ }
12789
+ };
12790
+ const _hoisted_31 = {
12791
+ class: "tableleft"
12792
+ };
12793
+ const _hoisted_32 = ["src"];
12794
+ const _hoisted_33 = {
12795
+ style: {
12796
+ "height": "300px"
12797
+ }
12798
+ };
12799
+ const _hoisted_34 = ["src"];
12800
+ const _hoisted_35 = {
12599
12801
  class: "show-right-box-btn"
12600
12802
  };
12601
- const _hoisted_19 = {
12803
+ const _hoisted_36 = {
12602
12804
  class: "btn-group"
12603
12805
  };
12604
- const _hoisted_20 = {
12806
+ const _hoisted_37 = {
12605
12807
  class: "kq3d-client-print-titleContainerDiv"
12606
12808
  };
12607
- const _hoisted_21 = {
12809
+ const _hoisted_38 = {
12608
12810
  class: "baseImage"
12609
12811
  };
12610
- const _hoisted_22 = ["src"];
12611
- const _hoisted_23 = ["id"];
12612
- const _hoisted_24 = ["onClick"];
12613
- const _hoisted_25 = {
12812
+ const _hoisted_39 = ["src"];
12813
+ const _hoisted_40 = {
12814
+ key: 0,
12815
+ class: "lengendTitle"
12816
+ };
12817
+ const _hoisted_41 = {
12818
+ class: "legend-panel"
12819
+ };
12820
+ const _hoisted_42 = ["src"];
12821
+ const _hoisted_43 = ["id"];
12822
+ const _hoisted_44 = ["onClick"];
12823
+ const _hoisted_45 = {
12614
12824
  class: "kq3d-client-print-infomationContainer"
12615
12825
  };
12616
- const _hoisted_26 = {
12826
+ const _hoisted_46 = {
12617
12827
  class: "kq3d-client-print-companyName"
12618
12828
  };
12619
- const _hoisted_27 = {
12829
+ const _hoisted_47 = {
12620
12830
  class: "kq3d-client-print-systemTime"
12621
12831
  };
12622
12832
 
@@ -12626,6 +12836,7 @@ const _hoisted_27 = {
12626
12836
 
12627
12837
 
12628
12838
 
12839
+
12629
12840
  const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12630
12841
  name: "Kq3dClientPrint"
12631
12842
  };
@@ -12697,11 +12908,12 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12697
12908
  //国际化
12698
12909
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
12699
12910
  language.value = messages.value[newVal]["webgl"];
12700
- companyName.value = props.companyName || language.value.comapanyname;
12911
+ setFooterDataform.value["companyName"] = props.companyName || language.value.comapanyname;
12701
12912
  systemTime.value = newVal == "zh" ? getSystemIime() : getSystemEnTime();
12702
12913
  printObj.value.popTitle = language.value.print;
12703
12914
  });
12704
12915
  const props = __props;
12916
+ // 标题的数据
12705
12917
  let setTitleDataform = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
12706
12918
  style: {
12707
12919
  fontSize: "18px",
@@ -12719,6 +12931,12 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12719
12931
  titleShow: true
12720
12932
  }
12721
12933
  });
12934
+ let viewModel = null;
12935
+ // 页脚的数据对象
12936
+ let setFooterDataform = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
12937
+ companyName: props.companyName,
12938
+ printDate: new Date()
12939
+ });
12722
12940
  // 文本的数据
12723
12941
  let setLabelDataform = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
12724
12942
  style: {
@@ -12734,6 +12952,12 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12734
12952
  labelValue: ""
12735
12953
  }
12736
12954
  });
12955
+ //中心点图片
12956
+ let centerPicData = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
12957
+ img: "",
12958
+ width: 32,
12959
+ height: 32
12960
+ });
12737
12961
  let cameraToImage = null;
12738
12962
  // 组件容器
12739
12963
  let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
@@ -12747,8 +12971,15 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12747
12971
  let selectLayerBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
12748
12972
  // 样式设置容器
12749
12973
  let selectTitleBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
12974
+ let selectFooterBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
12750
12975
  // 添加文本容器
12751
12976
  let selectTextBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
12977
+ //添加图片容器
12978
+ let selectImageBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
12979
+ //图例设置容器
12980
+ let selectLegendBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
12981
+ //中心点图片设置容器
12982
+ let selectCenterPicBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
12752
12983
  //页面设置tab设置
12753
12984
  const activeNames = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(["1"]);
12754
12985
  // 控制主容器与图层选择容器的切换
@@ -12757,10 +12988,33 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12757
12988
  let isShowLayer = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
12758
12989
  //标题设置显示控制
12759
12990
  let isShowTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
12991
+ let isShowFooter = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
12760
12992
  //添加文本显示控制
12761
12993
  let isShowText = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
12994
+ //图例设置显示控制
12995
+ let isShowlegendSet = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
12996
+ //中心点图片设置显示控制
12997
+ let isCenterPicSet = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
12762
12998
  // 边框样式
12763
12999
  let borderStyleValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
13000
+ //边框样式下拉选择
13001
+ let borderStyleData = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([{
13002
+ value: "printborder1",
13003
+ label: language.value.Template1
13004
+ }, {
13005
+ value: "printborder2",
13006
+ label: language.value.Template2
13007
+ }, {
13008
+ value: "printborder3",
13009
+ label: language.value.Template3
13010
+ }, {
13011
+ value: "printborder4",
13012
+ label: language.value.Template4
13013
+ }, {
13014
+ value: "printborder5",
13015
+ label: language.value.Template5
13016
+ }]);
13017
+
12764
13018
  // 纸张设置
12765
13019
  let sizeData = [[{
12766
13020
  f: "A2",
@@ -12795,12 +13049,14 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12795
13049
  }, "a6HSize"]];
12796
13050
  // 字体大小
12797
13051
  let sizelist = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)([]);
12798
-
13052
+ let legendList = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)([]);
12799
13053
  // 纸张类型
12800
13054
  let papForm = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("A4"); // 默认
12801
13055
 
13056
+ let fileList = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)([]);
13057
+ let isshowopacity = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
12802
13058
  // 纸张方向
12803
- let papAnchor = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 默认
13059
+ let papAnchor = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(language.value.portrait); // 默认
12804
13060
  // 图片格式
12805
13061
  let imageType = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("png");
12806
13062
  //图例对象
@@ -12811,6 +13067,12 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12811
13067
  let scalesShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
12812
13068
  // 指北针的显示与隐藏
12813
13069
  let compassShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
13070
+ //经纬度显示与隐藏
13071
+ let latlngShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
13072
+ //网格的显示与隐藏
13073
+ let gridShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
13074
+ let printdataShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
13075
+ let printCompanyShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
12814
13076
  let isActive = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(0);
12815
13077
  //打印内容div
12816
13078
  let printContentDiv = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
@@ -12825,7 +13087,6 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12825
13087
  // 公司名
12826
13088
  let companyName = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
12827
13089
  let printState = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
12828
- let printViewer = null;
12829
13090
  // 打印对象
12830
13091
  let printObj = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
12831
13092
  id: "printMap",
@@ -12852,16 +13113,33 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12852
13113
  let scaleStep = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(0.2);
12853
13114
  // 查询进度条
12854
13115
  let loadState = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
13116
+ let isscrollTop = false;
13117
+ let treescroll_ref = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
13118
+ let treeLegend = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
13119
+ let treeCheckedData = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)([]);
13120
+ let legendChecked = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([]);
13121
+ let legendOrder = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([]);
13122
+ // 树绑定字段
13123
+ const defaultProps = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
13124
+ label: "legendName"
13125
+ });
13126
+ let _transform = {
13127
+ transform: null,
13128
+ viewBox: null
13129
+ };
13130
+ let centerMarker = null;
13131
+ let lonLatGridLineLayer = null;
12855
13132
  // 三维球id
12856
13133
  global_event_default().setWebMap("scencePrint", "cesium", null);
12857
13134
  let scenceView_partent = null;
12858
- console.log("aaaaaaaaaaa");
13135
+ let scenceView_print = null;
12859
13136
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
13137
+ viewModel = new ClientPrintViewModel(props.mapTarget);
12860
13138
  if (!props.useCustomData) {
12861
13139
  global_event_default().getWebMapByMapTarget(props.mapTarget, scenceView => {
12862
13140
  if (scenceView && scenceView._viewer) {
12863
13141
  scenceView_partent = scenceView;
12864
- // formItem = scenceView._props;
13142
+ formItem = scenceView._props;
12865
13143
  showMap.value = true;
12866
13144
  }
12867
13145
  });
@@ -12877,9 +13155,10 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12877
13155
  sizelist.value.push(i);
12878
13156
  }
12879
13157
  setLabelData.value = [];
13158
+ fileList.value = [];
12880
13159
  global_event_default().getWebMapByMapTarget("scencePrint", scenceView => {
12881
13160
  if (scenceView && scenceView._viewer) {
12882
- printViewer = scenceView._viewer;
13161
+ scenceView_print = scenceView;
12883
13162
  if (!formItem.service && !formItem.scenceInfo) {
12884
13163
  if (scenceView_partent) {
12885
13164
  let _promises = [];
@@ -12892,11 +13171,13 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12892
13171
  _promises.push(promise);
12893
13172
  }
12894
13173
  }
12895
- Promise.all(_promises).then(() => {
12896
- scenceView._layerManager._layerTreeData = scenceView._layerManager._layerListData;
12897
- scenceView.fire("resetLayerDatas");
12898
- });
12899
- scenceView.setViewPosition(scenceView_partent.getViewPosition());
13174
+ if (_promises.length > 0) {
13175
+ Promise.all(_promises).then(() => {
13176
+ scenceView._layerManager._layerTreeData = scenceView._layerManager._layerListData;
13177
+ scenceView.fire("resetLayerDatas");
13178
+ });
13179
+ scenceView.setViewPosition(scenceView_partent.getViewPosition());
13180
+ }
12900
13181
  }
12901
13182
  }
12902
13183
  initControl();
@@ -12906,11 +13187,23 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12906
13187
  });
12907
13188
  }
12908
13189
  });
13190
+ // 格式化时间
13191
+ formateDate();
12909
13192
  });
12910
13193
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
12911
13194
  destroy();
12912
13195
  });
12913
-
13196
+ function formateDate() {
13197
+ if (locale.value === "zh") {
13198
+ var currentDate = setFooterDataform.value.printDate;
13199
+ var year = currentDate.getFullYear() + "";
13200
+ var month = currentDate.getMonth() + 1 + ""; // 月份从0开始,所以要加1
13201
+ var day = currentDate.getDate() + "";
13202
+ systemTime.value = year + "年" + month + "月" + day + "日";
13203
+ } else {
13204
+ systemTime.value = getSystemEnTime();
13205
+ }
13206
+ }
12914
13207
  /**
12915
13208
  * 获取当前时间
12916
13209
  * @returns {string}
@@ -12971,8 +13264,11 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12971
13264
  }
12972
13265
  return m[mn] + " " + dn + dns + "," + dt.getFullYear();
12973
13266
  }
13267
+ function changePrintDate() {
13268
+ formateDate();
13269
+ }
12974
13270
  function changStatusBar() {
12975
- if (printViewer) printViewer.statusBar.show = scalesShow.value;
13271
+ if (scenceView_print) scenceView_print._viewer.statusBar.show = scalesShow.value;
12976
13272
  }
12977
13273
  /**
12978
13274
  * 显示切换
@@ -12985,6 +13281,9 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12985
13281
  isShowLayer.value = true;
12986
13282
  isShowTitle.value = false;
12987
13283
  isShowText.value = false;
13284
+ isShowlegendSet.value = false;
13285
+ isShowFooter.value = false;
13286
+ isCenterPicSet.value = false;
12988
13287
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
12989
13288
  // settingBoxRef.value.style.height = `${selectLayerBoxRef.value.clientHeight}px`;
12990
13289
  settingBoxRef.value.style.height = `${selectLayerBoxRef.value.clientHeight}px`;
@@ -12994,20 +13293,61 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
12994
13293
  isShowLayer.value = false;
12995
13294
  isShowTitle.value = true;
12996
13295
  isShowText.value = false;
13296
+ isShowlegendSet.value = false;
13297
+ isShowFooter.value = false;
13298
+ isCenterPicSet.value = false;
12997
13299
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
12998
13300
  // settingBoxRef.value.style.height = `${selectTitleBoxRef.value.clientHeight}px`;
12999
13301
  settingBoxRef.value.style.height = `${selectTitleBoxRef.value.clientHeight}px`;
13000
13302
  });
13001
13303
  }
13304
+ if (type === "footer") {
13305
+ isShowLayer.value = false;
13306
+ isShowTitle.value = false;
13307
+ isShowText.value = false;
13308
+ isShowlegendSet.value = false;
13309
+ isShowFooter.value = true;
13310
+ isCenterPicSet.value = false;
13311
+ (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
13312
+ settingBoxRef.value.style.height = `${selectFooterBoxRef.value.clientHeight}px`;
13313
+ });
13314
+ }
13002
13315
  if (type === "text") {
13003
13316
  isShowLayer.value = false;
13004
13317
  isShowTitle.value = false;
13005
13318
  isShowText.value = true;
13319
+ isShowlegendSet.value = false;
13320
+ isShowFooter.value = false;
13321
+ isCenterPicSet.value = false;
13006
13322
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
13007
13323
  // settingBoxRef.value.style.height = `${selectTextBoxRef.value.clientHeight}px`;
13008
13324
  settingBoxRef.value.style.height = `${selectTextBoxRef.value.clientHeight}px`;
13009
13325
  });
13010
13326
  }
13327
+ if (type === "legend") {
13328
+ //图例
13329
+ isShowLayer.value = false;
13330
+ isShowTitle.value = false;
13331
+ isShowText.value = false;
13332
+ isShowlegendSet.value = true;
13333
+ isShowFooter.value = false;
13334
+ isCenterPicSet.value = false;
13335
+ (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
13336
+ settingBoxRef.value.style.height = `${selectLegendBoxRef.value.clientHeight}px`;
13337
+ defaultLengnd();
13338
+ });
13339
+ }
13340
+ if (type === "center") {
13341
+ isShowLayer.value = false;
13342
+ isShowTitle.value = false;
13343
+ isShowText.value = false;
13344
+ isShowlegendSet.value = false;
13345
+ isShowFooter.value = false;
13346
+ isCenterPicSet.value = true;
13347
+ (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
13348
+ settingBoxRef.value.style.height = `${selectCenterPicBoxRef.value.clientHeight}px`;
13349
+ });
13350
+ }
13011
13351
  }
13012
13352
 
13013
13353
  /**
@@ -13017,6 +13357,9 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13017
13357
  isShowLayer.value = false;
13018
13358
  isShowTitle.value = false;
13019
13359
  isShowText.value = false;
13360
+ isShowFooter.value = false;
13361
+ isShowlegendSet.value = false;
13362
+ isCenterPicSet.value = false;
13020
13363
  settingBoxRef.value.style.height = `${mainBoxRef.value.clientHeight}px`;
13021
13364
  }
13022
13365
 
@@ -13237,15 +13580,113 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13237
13580
  }, 1000);
13238
13581
  }
13239
13582
 
13583
+ /**
13584
+ * 获取图例
13585
+ */
13586
+ function getLengendList() {
13587
+ if (legendShow.value) {
13588
+ defaultLengnd();
13589
+ }
13590
+ }
13591
+ function defaultLengnd() {
13592
+ viewModel.once("getLengend", _data => {
13593
+ legendList.value = [];
13594
+ treeCheckedData.value = [];
13595
+ if (_data.legend.length > 0) {
13596
+ let _legendList = _data.legend;
13597
+ _legendList.forEach(list => {
13598
+ if (legendChecked.value.length > 0) {
13599
+ if (legendChecked.value.find(t => t.id == list.id)) {
13600
+ list.isShow = legendChecked.value.find(t => t.id == list.id).isShow;
13601
+ }
13602
+ }
13603
+ if (legendOrder.value.length > 0) {
13604
+ if (legendOrder.value.find(t => t.id == list.id)) {
13605
+ list.order = legendOrder.value.find(t => t.id == list.id).order;
13606
+ }
13607
+ }
13608
+ });
13609
+ legendList.value = _legendList;
13610
+ legendList.value = legendList.value.sort(compare("order"));
13611
+ for (let i = 0; i < _data.legend.length; i++) {
13612
+ if (_data.legend[i].isShow) {
13613
+ treeCheckedData.value.push(_data.legend[i].id);
13614
+ }
13615
+ }
13616
+ }
13617
+ });
13618
+ viewModel.getLengend();
13619
+ }
13620
+ /**
13621
+ * 对象属性排序比较
13622
+ * @param {string} property 要对比的属性值
13623
+ */
13624
+ function compare(property) {
13625
+ return function (a, b) {
13626
+ var value1 = parseInt(a[property]);
13627
+ var value2 = parseInt(b[property]);
13628
+ return value1 - value2;
13629
+ };
13630
+ }
13240
13631
  /**
13241
13632
  * 显示图例
13242
13633
  * @param {object} e
13243
13634
  */
13244
13635
  function showLegend(e) {
13245
- if (e) {
13246
- (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
13247
- lengend_ref.value.init();
13636
+ getLengendList();
13637
+ }
13638
+
13639
+ /**
13640
+ * 上传事件
13641
+ * @param {object} file
13642
+ */
13643
+ function clickUpload(file) {
13644
+ fileList.value.push({
13645
+ name: file.name,
13646
+ uid: file.uid,
13647
+ url: URL.createObjectURL(file.raw),
13648
+ width: 64,
13649
+ height: 64
13650
+ });
13651
+ }
13652
+ function clickUploadCenter(file) {
13653
+ centerPicData.value.img = URL.createObjectURL(file.raw);
13654
+ setCenterPic();
13655
+ }
13656
+ function setCenterPic() {
13657
+ if (centerPicData.value.img != "") {
13658
+ if (centerMarker) {
13659
+ centerMarker.remove();
13660
+ }
13661
+ let map = map2_ref.value.getWebMap().map;
13662
+ let src = centerPicData.value.img;
13663
+ let width = centerPicData.value.width;
13664
+ let height = centerPicData.value.height;
13665
+ var myIcon = L.icon({
13666
+ iconUrl: src,
13667
+ // 图标图片的URL
13668
+ iconSize: [width, height],
13669
+ iconAnchor: [width / 2, height / 2]
13248
13670
  });
13671
+ centerMarker = L.marker([map.getCenter().lat, map.getCenter().lng], {
13672
+ icon: myIcon,
13673
+ draggable: false
13674
+ }).addTo(map);
13675
+ } else {
13676
+ if (centerMarker) {
13677
+ centerMarker.remove();
13678
+ }
13679
+ }
13680
+ }
13681
+ function handleDelete(row) {
13682
+ let index = fileList.value.findIndex(t => t.uid === row.uid);
13683
+ fileList.value.splice(index, 1);
13684
+ console.log(index);
13685
+ }
13686
+ function handleDeleteCenterPic() {
13687
+ centerPicData.value.img = "";
13688
+ if (centerMarker) {
13689
+ centerMarker.remove();
13249
13690
  }
13250
13691
  }
13251
13692
  /**
@@ -13383,6 +13824,112 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13383
13824
  function getPixelValue(doc, key) {
13384
13825
  return Number(doc.style[key].replace("px", ""));
13385
13826
  }
13827
+
13828
+ // 新增文本项
13829
+ const addContents = () => {
13830
+ let item = {
13831
+ style: {
13832
+ fontSize: setLabelDataform.value.style.fontSize,
13833
+ fontFamily: setLabelDataform.value.style.fontFamily,
13834
+ color: setLabelDataform.value.style.color,
13835
+ padding: "10px 10px 5px 5px"
13836
+ },
13837
+ data: {
13838
+ dataId: "print_label_" + (setLabelData.value.length + 1),
13839
+ labelValue: "",
13840
+ isShow: false
13841
+ }
13842
+ };
13843
+ setLabelData.value.push(item);
13844
+ (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
13845
+ settingBoxRef.value.style.height = `${selectTextBoxRef.value.clientHeight}px`;
13846
+ });
13847
+ };
13848
+ const onChangeSetting = value => {
13849
+ if (!setLabelData.value[seleted_index.value]) {
13850
+ seleted_index.value = 0;
13851
+ }
13852
+ setLabelData.value[seleted_index.value].style = {
13853
+ fontSize: setLabelDataform.value.style.fontSize,
13854
+ fontFamily: setLabelDataform.value.style.fontFamily,
13855
+ color: setLabelDataform.value.style.color
13856
+ };
13857
+ };
13858
+
13859
+ // 修改文本
13860
+ const onChangeContents = index => {
13861
+ seleted_index.value = index;
13862
+ setTimeout(() => {
13863
+ var mapdiv = document.getElementById("printMap");
13864
+ var labelDiv = document.getElementById(setLabelData.value[index].data.dataId);
13865
+ labelDiv.style.display = "block";
13866
+ mapdiv.appendChild(labelDiv);
13867
+ }, 200);
13868
+ };
13869
+
13870
+ // 文本框聚焦
13871
+ const onFocusContents = (index, item) => {
13872
+ seleted_index.value = index;
13873
+ setLabelDataform.value.style.fontSize = setLabelData.value[index].style.fontSize;
13874
+ setLabelDataform.value.style.fontFamily = setLabelData.value[index].style.fontFamily;
13875
+ setLabelDataform.value.style.color = setLabelData.value[index].style.color;
13876
+
13877
+ //renderWrite();
13878
+ };
13879
+ function handleCheck(node, obj) {
13880
+ let isShow = false;
13881
+ if (obj.checkedKeys.includes(node.id)) {
13882
+ isShow = true;
13883
+ }
13884
+ legendChecked.value.push({
13885
+ id: node.id,
13886
+ isShow: isShow
13887
+ });
13888
+ legendList.value.forEach(t => {
13889
+ if (t.id === node.id) {
13890
+ t.isShow = isShow;
13891
+ }
13892
+ });
13893
+ }
13894
+
13895
+ // 拖动前存储勾选的节点
13896
+ // tree有bug 在拖动后 节点的勾选状态会消失 需要程序设置勾选
13897
+ let checkedNodeKeys = [];
13898
+ function funAllowDragStart() {
13899
+ const _checkedNodes = treeLegend.value.$refs.child.getCheckedNodes();
13900
+ checkedNodeKeys.splice(0);
13901
+ _checkedNodes.forEach(node => {
13902
+ if (node.isShow) {
13903
+ checkedNodeKeys.push(node.id);
13904
+ }
13905
+ });
13906
+ }
13907
+
13908
+ //节点拖动事件
13909
+ //dragType before、after、inner
13910
+ function nodedrop(node, afternode, dragType, event) {
13911
+ treeLegend.value.$refs.child.setCheckedKeys(checkedNodeKeys, false);
13912
+ let order = afternode.data.order;
13913
+ if (dragType === "before") {
13914
+ order = order - 1;
13915
+ if (order === 0) {
13916
+ order = 1;
13917
+ }
13918
+ }
13919
+ if (dragType === "after") {
13920
+ order = order + 1;
13921
+ }
13922
+ node.order = order;
13923
+ legendList.value.forEach(t => {
13924
+ if (t.id === node.id) {
13925
+ t.order = order;
13926
+ }
13927
+ });
13928
+ legendOrder.value.push({
13929
+ id: node.id,
13930
+ order: order
13931
+ });
13932
+ }
13386
13933
  /**
13387
13934
  * 清除设置
13388
13935
  */
@@ -13393,6 +13940,9 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13393
13940
  if (scalesShow.value) {
13394
13941
  scalesShow.value = false;
13395
13942
  }
13943
+ legendChecked.value = [];
13944
+ legendOrder.value = [];
13945
+ fileList.value = [];
13396
13946
  setLabelData.value = [];
13397
13947
  setTitleDataform.value = {
13398
13948
  // 标题的数据
@@ -13449,8 +13999,15 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13449
13999
  const _component_kq_layer_tree = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-layer-tree");
13450
14000
  const _component_kq_input = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input");
13451
14001
  const _component_kq_color_picker = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-color-picker");
13452
- const _component_kq_legend = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-legend");
14002
+ const _component_kq_date_picker = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-date-picker");
14003
+ const _component_kq_tree = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-tree");
13453
14004
  const _component_kq_scrollbar = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-scrollbar");
14005
+ const _component_kq_upload = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-upload");
14006
+ const _component_kq_table_Column = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-table-Column");
14007
+ const _component_kq_input_number = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input-number");
14008
+ const _component_kq_table = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-table");
14009
+ const _component_kq_tab_pane = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-tab-pane");
14010
+ const _component_kq_tabs = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-tabs");
13454
14011
  return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", ClientPrintvue_type_script_setup_true_lang_js_hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
13455
14012
  class: "settleLayer",
13456
14013
  ref_key: "boxRef",
@@ -13485,7 +14042,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13485
14042
  ref_key: "settingBoxRef",
13486
14043
  ref: settingBoxRef
13487
14044
  }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
13488
- class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["box", (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowLayer) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowTitle) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowText) ? 'is-show-layer' : null])
14045
+ class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["box", (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowLayer) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowTitle) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowText) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowlegendSet) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isCenterPicSet) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowFooter) ? 'is-show-layer' : null])
13489
14046
  }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
13490
14047
  class: "main-box",
13491
14048
  ref_key: "mainBoxRef",
@@ -13496,21 +14053,39 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13496
14053
  }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", ClientPrintvue_type_script_setup_true_lang_js_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).layerSelect), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
13497
14054
  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_namespaceObject.ArrowRight))]),
13498
14055
  _: 1 /* STABLE */
13499
- })]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14056
+ })]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 标题设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
13500
14057
  class: "select-layer-bar bar select-layer-margin",
13501
14058
  onClick: _cache[3] || (_cache[3] = $event => setShowChange('title'))
13502
14059
  }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", ClientPrintvue_type_script_setup_true_lang_js_hoisted_4, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).titlesetting), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
13503
14060
  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_namespaceObject.ArrowRight))]),
13504
14061
  _: 1 /* STABLE */
13505
- })]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14062
+ })]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 页脚设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14063
+ class: "select-layer-bar bar select-layer-margin",
14064
+ onClick: _cache[4] || (_cache[4] = $event => setShowChange('footer'))
14065
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_5, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).footersetting), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
14066
+ 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_namespaceObject.ArrowRight))]),
14067
+ _: 1 /* STABLE */
14068
+ })]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 文本设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14069
+ class: "select-layer-bar bar select-layer-margin",
14070
+ onClick: _cache[5] || (_cache[5] = $event => setShowChange('text'))
14071
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_6, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).addtext), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
14072
+ 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_namespaceObject.ArrowRight))]),
14073
+ _: 1 /* STABLE */
14074
+ })]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 图例设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14075
+ class: "select-layer-bar bar select-layer-margin",
14076
+ onClick: _cache[6] || (_cache[6] = $event => setShowChange('legend'))
14077
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_7, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printlegendset), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
14078
+ 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_namespaceObject.ArrowRight))]),
14079
+ _: 1 /* STABLE */
14080
+ })]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 图片设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
13506
14081
  class: "select-layer-bar bar select-layer-margin",
13507
- onClick: _cache[4] || (_cache[4] = $event => setShowChange('text'))
13508
- }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_5, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).addtext), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
14082
+ onClick: _cache[7] || (_cache[7] = $event => setShowChange('center'))
14083
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_8, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(_ctx.$t("webgl.addimage")), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
13509
14084
  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_namespaceObject.ArrowRight))]),
13510
14085
  _: 1 /* STABLE */
13511
14086
  })]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
13512
14087
  modelValue: activeNames.value,
13513
- "onUpdate:modelValue": _cache[14] || (_cache[14] = $event => activeNames.value = $event),
14088
+ "onUpdate:modelValue": _cache[17] || (_cache[17] = $event => activeNames.value = $event),
13514
14089
  onChange: changeMainHeight
13515
14090
  }, {
13516
14091
  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_collapse_item, {
@@ -13529,7 +14104,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13529
14104
  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_checkbox, {
13530
14105
  class: "btnStyle",
13531
14106
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendShow),
13532
- "onUpdate:modelValue": _cache[5] || (_cache[5] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(legendShow) ? legendShow.value = $event : legendShow = $event),
14107
+ "onUpdate:modelValue": _cache[8] || (_cache[8] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(legendShow) ? legendShow.value = $event : legendShow = $event),
13533
14108
  onChange: showLegend
13534
14109
  }, {
13535
14110
  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).printlegend), 1 /* TEXT */)]),
@@ -13542,7 +14117,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13542
14117
  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_checkbox, {
13543
14118
  class: "btnStyle",
13544
14119
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(compassShow),
13545
- "onUpdate:modelValue": _cache[6] || (_cache[6] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(compassShow) ? compassShow.value = $event : compassShow = $event)
14120
+ "onUpdate:modelValue": _cache[9] || (_cache[9] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(compassShow) ? compassShow.value = $event : compassShow = $event)
13546
14121
  }, {
13547
14122
  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).printcompass), 1 /* TEXT */)]),
13548
14123
  _: 1 /* STABLE */
@@ -13554,16 +14129,16 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13554
14129
  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_checkbox, {
13555
14130
  class: "btnStyle",
13556
14131
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(scalesShow),
13557
- "onUpdate:modelValue": _cache[7] || (_cache[7] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(scalesShow) ? scalesShow.value = $event : scalesShow = $event),
14132
+ "onUpdate:modelValue": _cache[10] || (_cache[10] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(scalesShow) ? scalesShow.value = $event : scalesShow = $event),
13558
14133
  onChange: changStatusBar
13559
14134
  }, {
13560
- 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).printstatusbar), 1 /* TEXT */)]),
14135
+ 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).clientprintscale), 1 /* TEXT */)]),
13561
14136
  _: 1 /* STABLE */
13562
14137
  }, 8 /* PROPS */, ["modelValue"])]),
13563
14138
  _: 1 /* STABLE */
13564
14139
  })]),
13565
14140
  _: 1 /* STABLE */
13566
- }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_6, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
14141
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_9, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
13567
14142
  model: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform),
13568
14143
  "label-width": "70px",
13569
14144
  "label-position": "left"
@@ -13575,7 +14150,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13575
14150
  }, {
13576
14151
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
13577
14152
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(borderStyleValue),
13578
- "onUpdate:modelValue": _cache[8] || (_cache[8] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(borderStyleValue) ? borderStyleValue.value = $event : borderStyleValue = $event),
14153
+ "onUpdate:modelValue": _cache[11] || (_cache[11] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(borderStyleValue) ? borderStyleValue.value = $event : borderStyleValue = $event),
13579
14154
  onChange: changeBorderStyleData
13580
14155
  }, {
13581
14156
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
@@ -13608,33 +14183,33 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13608
14183
  }, {
13609
14184
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
13610
14185
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papForm),
13611
- "onUpdate:modelValue": _cache[9] || (_cache[9] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papForm) ? papForm.value = $event : papForm = $event),
14186
+ "onUpdate:modelValue": _cache[12] || (_cache[12] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papForm) ? papForm.value = $event : papForm = $event),
13612
14187
  onChange: changeMapContainerSize
13613
14188
  }, {
13614
14189
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
13615
14190
  value: "A2"
13616
14191
  }, {
13617
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[27] || (_cache[27] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A2")])),
14192
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[37] || (_cache[37] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A2")])),
13618
14193
  _: 1 /* STABLE */
13619
14194
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
13620
14195
  value: "A3"
13621
14196
  }, {
13622
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[28] || (_cache[28] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A3")])),
14197
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[38] || (_cache[38] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A3")])),
13623
14198
  _: 1 /* STABLE */
13624
14199
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
13625
14200
  value: "A4"
13626
14201
  }, {
13627
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[29] || (_cache[29] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A4")])),
14202
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[39] || (_cache[39] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A4")])),
13628
14203
  _: 1 /* STABLE */
13629
14204
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
13630
14205
  value: "A5"
13631
14206
  }, {
13632
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[30] || (_cache[30] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A5")])),
14207
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[40] || (_cache[40] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A5")])),
13633
14208
  _: 1 /* STABLE */
13634
14209
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
13635
14210
  value: "A6"
13636
14211
  }, {
13637
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[31] || (_cache[31] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A6")])),
14212
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[41] || (_cache[41] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A6")])),
13638
14213
  _: 1 /* STABLE */
13639
14214
  })]),
13640
14215
  _: 1 /* STABLE */
@@ -13651,7 +14226,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13651
14226
  }, {
13652
14227
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
13653
14228
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papAnchor),
13654
- "onUpdate:modelValue": _cache[10] || (_cache[10] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papAnchor) ? papAnchor.value = $event : papAnchor = $event),
14229
+ "onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papAnchor) ? papAnchor.value = $event : papAnchor = $event),
13655
14230
  onChange: changeMapContainerSize
13656
14231
  }, {
13657
14232
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
@@ -13675,17 +14250,17 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13675
14250
  }, {
13676
14251
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
13677
14252
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(imageType),
13678
- "onUpdate:modelValue": _cache[11] || (_cache[11] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(imageType) ? imageType.value = $event : imageType = $event)
14253
+ "onUpdate:modelValue": _cache[14] || (_cache[14] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(imageType) ? imageType.value = $event : imageType = $event)
13679
14254
  }, {
13680
14255
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
13681
14256
  value: "png"
13682
14257
  }, {
13683
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[32] || (_cache[32] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("png")])),
14258
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[42] || (_cache[42] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("png")])),
13684
14259
  _: 1 /* STABLE */
13685
14260
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
13686
14261
  value: "jpg"
13687
14262
  }, {
13688
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[33] || (_cache[33] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("jpg")])),
14263
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[43] || (_cache[43] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("jpg")])),
13689
14264
  _: 1 /* STABLE */
13690
14265
  })]),
13691
14266
  _: 1 /* STABLE */
@@ -13697,9 +14272,9 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13697
14272
  _: 1 /* STABLE */
13698
14273
  })]),
13699
14274
  _: 1 /* STABLE */
13700
- }, 8 /* PROPS */, ["model"])]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_7, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
14275
+ }, 8 /* PROPS */, ["model"])]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_10, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
13701
14276
  type: "primary",
13702
- onClick: _cache[12] || (_cache[12] = $event => getPic()),
14277
+ onClick: _cache[15] || (_cache[15] = $event => getPic()),
13703
14278
  loading: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(loadState)
13704
14279
  }, {
13705
14280
  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).savePicture), 1 /* TEXT */)]),
@@ -13707,7 +14282,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13707
14282
  }, 8 /* PROPS */, ["loading"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)(((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_button, {
13708
14283
  type: "plain",
13709
14284
  loading: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printState),
13710
- onClick: _cache[13] || (_cache[13] = $event => canvasToImage())
14285
+ onClick: _cache[16] || (_cache[16] = $event => canvasToImage())
13711
14286
  }, {
13712
14287
  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).sendprinter), 1 /* TEXT */)]),
13713
14288
  _: 1 /* STABLE */
@@ -13726,7 +14301,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13726
14301
  }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
13727
14302
  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_namespaceObject.ArrowLeft))]),
13728
14303
  _: 1 /* STABLE */
13729
- }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_8, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).layerSelect), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_9, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_layer_tree, {
14304
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_11, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).layerSelect), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_12, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_layer_tree, {
13730
14305
  showShadow: false,
13731
14306
  "map-target": 'scencePrint'
13732
14307
  })])], 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_.createCommentVNode)(" 标题设置-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
@@ -13739,12 +14314,12 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13739
14314
  }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
13740
14315
  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_namespaceObject.ArrowLeft))]),
13741
14316
  _: 1 /* STABLE */
13742
- }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_10, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).titlesetting), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
14317
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_13, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).titlesetting), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
13743
14318
  model: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform),
13744
14319
  "label-width": "70px",
13745
14320
  "label-position": "left"
13746
14321
  }, {
13747
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_11, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
14322
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_14, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
13748
14323
  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, {
13749
14324
  span: 24
13750
14325
  }, {
@@ -13753,7 +14328,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13753
14328
  }, {
13754
14329
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input, {
13755
14330
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title,
13756
- "onUpdate:modelValue": _cache[15] || (_cache[15] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title = $event)
14331
+ "onUpdate:modelValue": _cache[18] || (_cache[18] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title = $event)
13757
14332
  }, null, 8 /* PROPS */, ["modelValue"])]),
13758
14333
  _: 1 /* STABLE */
13759
14334
  }, 8 /* PROPS */, ["label"])]),
@@ -13769,7 +14344,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13769
14344
  }, {
13770
14345
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
13771
14346
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily,
13772
- "onUpdate:modelValue": _cache[16] || (_cache[16] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily = $event),
14347
+ "onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily = $event),
13773
14348
  placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseselect,
13774
14349
  style: {
13775
14350
  "width": "100%"
@@ -13801,7 +14376,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13801
14376
  }, {
13802
14377
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
13803
14378
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize,
13804
- "onUpdate:modelValue": _cache[17] || (_cache[17] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize = $event),
14379
+ "onUpdate:modelValue": _cache[20] || (_cache[20] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize = $event),
13805
14380
  placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fontsize
13806
14381
  }, {
13807
14382
  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)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(sizelist).value, size => {
@@ -13821,7 +14396,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13821
14396
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
13822
14397
  span: 2
13823
14398
  }, {
13824
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[34] || (_cache[34] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(" ")])),
14399
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[44] || (_cache[44] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(" ")])),
13825
14400
  _: 1 /* STABLE */
13826
14401
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
13827
14402
  span: 6
@@ -13831,7 +14406,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13831
14406
  }, {
13832
14407
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_color_picker, {
13833
14408
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color,
13834
- "onUpdate:modelValue": _cache[18] || (_cache[18] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color = $event),
14409
+ "onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color = $event),
13835
14410
  "show-alpha": ""
13836
14411
  }, null, 8 /* PROPS */, ["modelValue"])]),
13837
14412
  _: 1 /* STABLE */
@@ -13848,7 +14423,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13848
14423
  }, {
13849
14424
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_color_picker, {
13850
14425
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor,
13851
- "onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor = $event),
14426
+ "onUpdate:modelValue": _cache[22] || (_cache[22] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor = $event),
13852
14427
  "show-alpha": ""
13853
14428
  }, null, 8 /* PROPS */, ["modelValue"])]),
13854
14429
  _: 1 /* STABLE */
@@ -13862,7 +14437,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13862
14437
  }, {
13863
14438
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_color_picker, {
13864
14439
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg,
13865
- "onUpdate:modelValue": _cache[20] || (_cache[20] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg = $event),
14440
+ "onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg = $event),
13866
14441
  "show-alpha": ""
13867
14442
  }, null, 8 /* PROPS */, ["modelValue"])]),
13868
14443
  _: 1 /* STABLE */
@@ -13871,9 +14446,9 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13871
14446
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
13872
14447
  span: 8
13873
14448
  }, {
13874
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_12, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
14449
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_15, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
13875
14450
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow,
13876
- "onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow = $event)
14451
+ "onUpdate:modelValue": _cache[24] || (_cache[24] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow = $event)
13877
14452
  }, {
13878
14453
  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).backgroundShadow), 1 /* TEXT */)]),
13879
14454
  _: 1 /* STABLE */
@@ -13881,15 +14456,98 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13881
14456
  _: 1 /* STABLE */
13882
14457
  })]),
13883
14458
  _: 1 /* STABLE */
13884
- }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_13, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
14459
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_16, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
13885
14460
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow,
13886
- "onUpdate:modelValue": _cache[22] || (_cache[22] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow = $event)
14461
+ "onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow = $event)
13887
14462
  }, {
13888
14463
  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).displaytitle), 1 /* TEXT */)]),
13889
14464
  _: 1 /* STABLE */
13890
14465
  }, 8 /* PROPS */, ["modelValue"])])])]),
13891
14466
  _: 1 /* STABLE */
13892
- }, 8 /* PROPS */, ["model"])], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowTitle)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 添加文本-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14467
+ }, 8 /* PROPS */, ["model"])], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowTitle)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 页脚设置-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14468
+ class: "select-layer-box",
14469
+ ref_key: "selectFooterBoxRef",
14470
+ ref: selectFooterBoxRef
14471
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 页脚设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14472
+ class: "select-layer-bar bar",
14473
+ onClick: setMainStyle
14474
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
14475
+ 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_namespaceObject.ArrowLeft))]),
14476
+ _: 1 /* STABLE */
14477
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_17, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).footersetting), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
14478
+ model: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform),
14479
+ "label-width": "70px",
14480
+ "label-position": "left"
14481
+ }, {
14482
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_18, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
14483
+ 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, {
14484
+ span: 24
14485
+ }, {
14486
+ 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, {
14487
+ label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printcompany
14488
+ }, {
14489
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input, {
14490
+ modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName,
14491
+ "onUpdate:modelValue": _cache[26] || (_cache[26] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName = $event)
14492
+ }, null, 8 /* PROPS */, ["modelValue"])]),
14493
+ _: 1 /* STABLE */
14494
+ }, 8 /* PROPS */, ["label"])]),
14495
+ _: 1 /* STABLE */
14496
+ })]),
14497
+ _: 1 /* STABLE */
14498
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
14499
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
14500
+ span: 24
14501
+ }, {
14502
+ 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, {
14503
+ label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printdate
14504
+ }, {
14505
+ 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_date_picker, {
14506
+ modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate,
14507
+ "onUpdate:modelValue": _cache[27] || (_cache[27] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate = $event),
14508
+ type: "date",
14509
+ clearable: false,
14510
+ editable: false,
14511
+ onChange: changePrintDate,
14512
+ style: {
14513
+ "width": "100%"
14514
+ }
14515
+ }, null, 8 /* PROPS */, ["modelValue"])]),
14516
+ _: 1 /* STABLE */
14517
+ }, 8 /* PROPS */, ["label"])]),
14518
+ _: 1 /* STABLE */
14519
+ })]),
14520
+ _: 1 /* STABLE */
14521
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
14522
+ 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, {
14523
+ span: 12
14524
+ }, {
14525
+ 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_checkbox, {
14526
+ class: "btnStyle",
14527
+ modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printCompanyShow),
14528
+ "onUpdate:modelValue": _cache[28] || (_cache[28] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printCompanyShow) ? printCompanyShow.value = $event : printCompanyShow = $event)
14529
+ }, {
14530
+ 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).printcompany), 1 /* TEXT */)]),
14531
+ _: 1 /* STABLE */
14532
+ }, 8 /* PROPS */, ["modelValue"])]),
14533
+ _: 1 /* STABLE */
14534
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
14535
+ span: 12
14536
+ }, {
14537
+ 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_checkbox, {
14538
+ class: "btnStyle",
14539
+ modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printdataShow),
14540
+ "onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printdataShow) ? printdataShow.value = $event : printdataShow = $event)
14541
+ }, {
14542
+ 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).printdate), 1 /* TEXT */)]),
14543
+ _: 1 /* STABLE */
14544
+ }, 8 /* PROPS */, ["modelValue"])]),
14545
+ _: 1 /* STABLE */
14546
+ })]),
14547
+ _: 1 /* STABLE */
14548
+ })])]),
14549
+ _: 1 /* STABLE */
14550
+ }, 8 /* PROPS */, ["model"])], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowFooter)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 添加文本-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
13893
14551
  class: "select-layer-box",
13894
14552
  ref_key: "selectTextBoxRef",
13895
14553
  ref: selectTextBoxRef
@@ -13899,7 +14557,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13899
14557
  }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
13900
14558
  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_namespaceObject.ArrowLeft))]),
13901
14559
  _: 1 /* STABLE */
13902
- }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_14, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).addtext), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_15, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
14560
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_19, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).addtext), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_20, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
13903
14561
  model: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform),
13904
14562
  "label-width": "70px",
13905
14563
  "label-position": "left"
@@ -13909,7 +14567,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13909
14567
  }, {
13910
14568
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
13911
14569
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily,
13912
- "onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily = $event),
14570
+ "onUpdate:modelValue": _cache[30] || (_cache[30] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily = $event),
13913
14571
  placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseselect,
13914
14572
  style: {
13915
14573
  "width": "100%"
@@ -13937,7 +14595,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13937
14595
  }, {
13938
14596
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
13939
14597
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize,
13940
- "onUpdate:modelValue": _cache[24] || (_cache[24] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize = $event),
14598
+ "onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize = $event),
13941
14599
  placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fontsize
13942
14600
  }, {
13943
14601
  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)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(sizelist).value, size => {
@@ -13957,7 +14615,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13957
14615
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
13958
14616
  span: 2
13959
14617
  }, {
13960
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[35] || (_cache[35] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(" ")])),
14618
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[45] || (_cache[45] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(" ")])),
13961
14619
  _: 1 /* STABLE */
13962
14620
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
13963
14621
  span: 6
@@ -13967,7 +14625,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13967
14625
  }, {
13968
14626
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", null, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_color_picker, {
13969
14627
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color,
13970
- "onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color = $event),
14628
+ "onUpdate:modelValue": _cache[32] || (_cache[32] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color = $event),
13971
14629
  "show-alpha": ""
13972
14630
  }, null, 8 /* PROPS */, ["modelValue"])])]),
13973
14631
  _: 1 /* STABLE */
@@ -13984,13 +14642,13 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
13984
14642
  rows: "12",
13985
14643
  placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseentercontent,
13986
14644
  spellcheck: "false",
13987
- "onUpdate:modelValue": _cache[26] || (_cache[26] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue = $event),
14645
+ "onUpdate:modelValue": _cache[33] || (_cache[33] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue = $event),
13988
14646
  style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style)
13989
- }, null, 12 /* STYLE, PROPS */, _hoisted_16), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vModelText, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue]])]),
14647
+ }, null, 12 /* STYLE, PROPS */, _hoisted_21), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vModelText, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue]])]),
13990
14648
  _: 1 /* STABLE */
13991
14649
  }, 8 /* PROPS */, ["label"])]),
13992
14650
  _: 1 /* STABLE */
13993
- }, 8 /* PROPS */, ["model"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_17, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
14651
+ }, 8 /* PROPS */, ["model"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_22, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
13994
14652
  type: "primary",
13995
14653
  onClick: addLabel
13996
14654
  }, {
@@ -14002,7 +14660,227 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
14002
14660
  }, {
14003
14661
  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).printclear), 1 /* TEXT */)]),
14004
14662
  _: 1 /* STABLE */
14005
- })])])], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowText)]])], 2 /* CLASS */)], 2 /* CLASS */)], 4 /* STYLE */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_18, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_19, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
14663
+ })])])], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowText)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 图例设置-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14664
+ class: "select-layer-box",
14665
+ ref_key: "selectLegendBoxRef",
14666
+ ref: selectLegendBoxRef
14667
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 图例设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14668
+ class: "select-layer-bar bar",
14669
+ onClick: setMainStyle
14670
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
14671
+ 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_namespaceObject.ArrowLeft))]),
14672
+ _: 1 /* STABLE */
14673
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_23, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(_ctx.$t("webgl.printlegendset")), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_24, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_25, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(_ctx.$t("webgl.dragnodelegend")), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_26, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_scrollbar, {
14674
+ ref_key: "treescroll_ref",
14675
+ ref: treescroll_ref,
14676
+ class: "page-scroll",
14677
+ always: ""
14678
+ }, {
14679
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_27, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_tree, {
14680
+ ref_key: "treeLegend",
14681
+ ref: treeLegend,
14682
+ "highlight-current": true,
14683
+ data: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendList).value,
14684
+ props: defaultProps,
14685
+ "node-key": "id",
14686
+ "show-checkbox": "",
14687
+ "default-checked-keys": (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(treeCheckedData).value,
14688
+ draggable: "",
14689
+ "expand-on-click-node": true,
14690
+ "default-expand-all": true,
14691
+ onCheck: handleCheck,
14692
+ onNodeDragStart: funAllowDragStart,
14693
+ onNodeDrop: nodedrop
14694
+ }, null, 8 /* PROPS */, ["data", "props", "default-checked-keys"])])]),
14695
+ _: 1 /* STABLE */
14696
+ }, 512 /* NEED_PATCH */)])])], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowlegendSet)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 中心点图片-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14697
+ class: "select-layer-box",
14698
+ ref_key: "selectCenterPicBoxRef",
14699
+ ref: selectCenterPicBoxRef
14700
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 中心点图片-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14701
+ class: "select-layer-bar bar",
14702
+ onClick: setMainStyle
14703
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
14704
+ 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_namespaceObject.ArrowLeft))]),
14705
+ _: 1 /* STABLE */
14706
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_28, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(_ctx.$t("webgl.addimage")), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
14707
+ "label-width": "70px",
14708
+ "label-position": "left"
14709
+ }, {
14710
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_29, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_tabs, {
14711
+ type: "border-card"
14712
+ }, {
14713
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_tab_pane, {
14714
+ label: _ctx.$t('webgl.addimage')
14715
+ }, {
14716
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_30, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_upload, {
14717
+ "auto-upload": false,
14718
+ "show-file-list": false,
14719
+ "on-change": clickUpload,
14720
+ accept: ".png,.jpg,.bmp"
14721
+ }, {
14722
+ 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_button, {
14723
+ type: "primary"
14724
+ }, {
14725
+ 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)(_ctx.$t("webgl.addimage")), 1 /* TEXT */)]),
14726
+ _: 1 /* STABLE */
14727
+ })]),
14728
+ _: 1 /* STABLE */
14729
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_31, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_table, {
14730
+ border: "",
14731
+ stripe: "",
14732
+ "highlight-current-row": "",
14733
+ data: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(fileList).value,
14734
+ style: {
14735
+ "width": "100%"
14736
+ },
14737
+ height: "250px",
14738
+ "header-cell-style": _ctx.headClass,
14739
+ "cell-style": _ctx.cellClass,
14740
+ "empty-text": _ctx.$t('common.nodata'),
14741
+ "table-layout": "auto"
14742
+ }, {
14743
+ 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_table_Column, {
14744
+ prop: "url",
14745
+ label: _ctx.$t('webgl.printimage')
14746
+ }, {
14747
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(scope => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
14748
+ src: scope.row.url,
14749
+ height: "32",
14750
+ width: "32"
14751
+ }, null, 8 /* PROPS */, _hoisted_32)]),
14752
+ _: 1 /* STABLE */
14753
+ }, 8 /* PROPS */, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_table_Column, {
14754
+ prop: "width",
14755
+ label: _ctx.$t('webgl.printimagewidth'),
14756
+ width: "100"
14757
+ }, {
14758
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(scope => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
14759
+ modelValue: scope.row.width,
14760
+ "onUpdate:modelValue": $event => scope.row.width = $event,
14761
+ min: 0,
14762
+ "controls-position": "right",
14763
+ size: "small"
14764
+ }, null, 8 /* PROPS */, ["modelValue", "onUpdate:modelValue"])]),
14765
+ _: 1 /* STABLE */
14766
+ }, 8 /* PROPS */, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_table_Column, {
14767
+ prop: "height",
14768
+ label: _ctx.$t('webgl.printimageheigth'),
14769
+ width: "100"
14770
+ }, {
14771
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(scope => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
14772
+ modelValue: scope.row.height,
14773
+ "onUpdate:modelValue": $event => scope.row.height = $event,
14774
+ min: 0,
14775
+ "controls-position": "right",
14776
+ size: "small"
14777
+ }, null, 8 /* PROPS */, ["modelValue", "onUpdate:modelValue"])]),
14778
+ _: 1 /* STABLE */
14779
+ }, 8 /* PROPS */, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_table_Column, {
14780
+ align: "right"
14781
+ }, {
14782
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(scope => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
14783
+ size: "24",
14784
+ circle: "",
14785
+ icon: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.CircleClose),
14786
+ title: _ctx.$t('webgl.printclearimg'),
14787
+ onClick: $event => handleDelete(scope.row)
14788
+ }, null, 8 /* PROPS */, ["icon", "title", "onClick"])]),
14789
+ _: 1 /* STABLE */
14790
+ })]),
14791
+ _: 1 /* STABLE */
14792
+ }, 8 /* PROPS */, ["data", "header-cell-style", "cell-style", "empty-text"])])])]),
14793
+ _: 1 /* STABLE */
14794
+ }, 8 /* PROPS */, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_tab_pane, {
14795
+ label: _ctx.$t('webgl.printcenterpicset')
14796
+ }, {
14797
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_33, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
14798
+ 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, {
14799
+ span: 24
14800
+ }, {
14801
+ 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, {
14802
+ label: _ctx.$t('webgl.printimage')
14803
+ }, {
14804
+ 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_upload, {
14805
+ "auto-upload": false,
14806
+ "show-file-list": false,
14807
+ "on-change": clickUploadCenter,
14808
+ accept: ".png,.jpg,.bmp"
14809
+ }, {
14810
+ 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_button, {
14811
+ type: "primary"
14812
+ }, {
14813
+ 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)(_ctx.$t("webgl.addimage")), 1 /* TEXT */)]),
14814
+ _: 1 /* STABLE */
14815
+ })]),
14816
+ _: 1 /* STABLE */
14817
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
14818
+ src: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).img,
14819
+ width: "32",
14820
+ height: "32",
14821
+ style: {
14822
+ "margin-left": "32px"
14823
+ }
14824
+ }, null, 8 /* PROPS */, _hoisted_34), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).img != '']]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
14825
+ size: "24",
14826
+ circle: "",
14827
+ icon: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.CircleClose),
14828
+ title: _ctx.$t('webgl.printclearimg'),
14829
+ onClick: _cache[34] || (_cache[34] = $event => handleDeleteCenterPic()),
14830
+ style: {
14831
+ "margin-left": "32px"
14832
+ }
14833
+ }, null, 8 /* PROPS */, ["icon", "title"]), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).img != '']])]),
14834
+ _: 1 /* STABLE */
14835
+ }, 8 /* PROPS */, ["label"])]),
14836
+ _: 1 /* STABLE */
14837
+ })]),
14838
+ _: 1 /* STABLE */
14839
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
14840
+ 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, {
14841
+ span: 24
14842
+ }, {
14843
+ 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, {
14844
+ label: _ctx.$t('webgl.printwidthset')
14845
+ }, {
14846
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
14847
+ modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width,
14848
+ "onUpdate:modelValue": _cache[35] || (_cache[35] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width = $event),
14849
+ min: 0,
14850
+ "controls-position": "right",
14851
+ onChange: _ctx.onChangecenterImg
14852
+ }, null, 8 /* PROPS */, ["modelValue", "onChange"])]),
14853
+ _: 1 /* STABLE */
14854
+ }, 8 /* PROPS */, ["label"])]),
14855
+ _: 1 /* STABLE */
14856
+ })]),
14857
+ _: 1 /* STABLE */
14858
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
14859
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
14860
+ span: 24
14861
+ }, {
14862
+ 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, {
14863
+ label: _ctx.$t('webgl.printheightset')
14864
+ }, {
14865
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
14866
+ modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height,
14867
+ "onUpdate:modelValue": _cache[36] || (_cache[36] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height = $event),
14868
+ min: 0,
14869
+ "controls-position": "right",
14870
+ onChange: _ctx.onChangecenterImg
14871
+ }, null, 8 /* PROPS */, ["modelValue", "onChange"])]),
14872
+ _: 1 /* STABLE */
14873
+ }, 8 /* PROPS */, ["label"])]),
14874
+ _: 1 /* STABLE */
14875
+ })]),
14876
+ _: 1 /* STABLE */
14877
+ })])]),
14878
+ _: 1 /* STABLE */
14879
+ }, 8 /* PROPS */, ["label"])]),
14880
+ _: 1 /* STABLE */
14881
+ })])]),
14882
+ _: 1 /* STABLE */
14883
+ })], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isCenterPicSet)]])], 2 /* CLASS */)], 2 /* CLASS */)], 4 /* STYLE */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_35, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_36, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
14006
14884
  onClick: Enlarge,
14007
14885
  title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).equalscalezoom,
14008
14886
  class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isActive) === 1 ? 'clickborder' : '')
@@ -14052,7 +14930,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
14052
14930
  class: "kq3d-client-print-mapContainerDiv kq3d-client-print-a4VSize",
14053
14931
  onselectstart: "return false",
14054
14932
  id: "printMap"
14055
- }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_20, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14933
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_37, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14056
14934
  ref_key: "titleRef",
14057
14935
  ref: titleRef,
14058
14936
  style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)({
@@ -14065,9 +14943,9 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
14065
14943
  class: "kq3d-client-print-printContentDiv kq3d-client-print-printborder1",
14066
14944
  ref_key: "printContentDiv",
14067
14945
  ref: printContentDiv
14068
- }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_21, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
14946
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_38, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
14069
14947
  src: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(scenceImageUrl)
14070
- }, null, 8 /* PROPS */, _hoisted_22)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(showMap) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(SceneView), {
14948
+ }, null, 8 /* PROPS */, _hoisted_39)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(showMap) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(SceneView), {
14071
14949
  key: 0,
14072
14950
  target: "scencePrint",
14073
14951
  options: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).options,
@@ -14088,12 +14966,19 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
14088
14966
  onMouseover: setdragCursor,
14089
14967
  onMousedown: dragTl,
14090
14968
  id: "divlegendDiv"
14091
- }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendShow) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_legend, {
14969
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendShow) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", {
14092
14970
  key: 0,
14093
- mapTarget: "scencePrint",
14094
14971
  ref_key: "lengend_ref",
14095
- ref: lengend_ref
14096
- }, null, 512 /* NEED_PATCH */)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)], 32 /* NEED_HYDRATION */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("指北针"), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14972
+ ref: lengend_ref,
14973
+ class: "kq-legend-box"
14974
+ }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendList).value && (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendList).value.length > 0 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_40, _cache[46] || (_cache[46] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, "图例", -1 /* HOISTED */)]))) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-space direction=\"vertical\" alignment=\"flex-start\"> "), ((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)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendList).value, legend => {
14975
+ return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)(((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_41, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
14976
+ src: legend.src,
14977
+ style: {
14978
+ "padding-right": "8px"
14979
+ }
14980
+ }, null, 8 /* PROPS */, _hoisted_42), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("label", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(legend.legendName), 1 /* TEXT */)], 512 /* NEED_PATCH */)), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, legend.isShow]]);
14981
+ }), 256 /* UNKEYED_FRAGMENT */)), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" </kq-space> ")], 512 /* NEED_PATCH */)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)], 32 /* NEED_HYDRATION */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("指北针"), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
14097
14982
  class: "kq3d-client-print-compassDiv",
14098
14983
  onMouseover: setdragCursor,
14099
14984
  onMousedown: dragTl,
@@ -14126,10 +15011,10 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
14126
15011
  }, {
14127
15012
  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_namespaceObject.Close))]),
14128
15013
  _: 1 /* STABLE */
14129
- }, 8 /* PROPS */, ["title"])], 8 /* PROPS */, _hoisted_24)], 40 /* PROPS, NEED_HYDRATION */, _hoisted_23)), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, item.data.isShow]]);
15014
+ }, 8 /* PROPS */, ["title"])], 8 /* PROPS */, _hoisted_44)], 40 /* PROPS, NEED_HYDRATION */, _hoisted_43)), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, item.data.isShow]]);
14130
15015
  }), 128 /* KEYED_FRAGMENT */))]),
14131
15016
  _: 1 /* STABLE */
14132
- }, 8 /* PROPS */, ["options", "service", "scenceInfo", "showToolButtons", "defaultShowLayerNames", "toolButtonsPosition", "showLogo"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)], 512 /* NEED_PATCH */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_25, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_26, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printcompany) + ":" + (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(companyName)), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_27, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printdate) + ":" + (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(systemTime)), 1 /* TEXT */)])])], 512 /* NEED_PATCH */)]),
15017
+ }, 8 /* PROPS */, ["options", "service", "scenceInfo", "showToolButtons", "defaultShowLayerNames", "toolButtonsPosition", "showLogo"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)], 512 /* NEED_PATCH */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_45, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_46, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printcompany) + ":" + (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_47, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printdate) + ":" + (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(systemTime)), 1 /* TEXT */)])])], 512 /* NEED_PATCH */)]),
14133
15018
  _: 1 /* STABLE */
14134
15019
  })], 512 /* NEED_PATCH */)], 512 /* NEED_PATCH */);
14135
15020
  };
@@ -14730,39 +15615,39 @@ const Measurevue_type_script_setup_true_lang_js_hoisted_26 = {
14730
15615
  const Measurevue_type_script_setup_true_lang_js_hoisted_27 = {
14731
15616
  class: "tit"
14732
15617
  };
14733
- const _hoisted_28 = {
15618
+ const Measurevue_type_script_setup_true_lang_js_hoisted_28 = {
14734
15619
  class: "res"
14735
15620
  };
14736
- const _hoisted_29 = {
15621
+ const Measurevue_type_script_setup_true_lang_js_hoisted_29 = {
14737
15622
  class: "tit"
14738
15623
  };
14739
- const _hoisted_30 = {
15624
+ const Measurevue_type_script_setup_true_lang_js_hoisted_30 = {
14740
15625
  class: "res"
14741
15626
  };
14742
- const _hoisted_31 = {
15627
+ const Measurevue_type_script_setup_true_lang_js_hoisted_31 = {
14743
15628
  key: 2,
14744
15629
  class: "result"
14745
15630
  };
14746
- const _hoisted_32 = {
15631
+ const Measurevue_type_script_setup_true_lang_js_hoisted_32 = {
14747
15632
  class: "tit"
14748
15633
  };
14749
- const _hoisted_33 = {
15634
+ const Measurevue_type_script_setup_true_lang_js_hoisted_33 = {
14750
15635
  class: "res"
14751
15636
  };
14752
- const _hoisted_34 = {
15637
+ const Measurevue_type_script_setup_true_lang_js_hoisted_34 = {
14753
15638
  class: "tit"
14754
15639
  };
14755
- const _hoisted_35 = {
15640
+ const Measurevue_type_script_setup_true_lang_js_hoisted_35 = {
14756
15641
  class: "res"
14757
15642
  };
14758
- const _hoisted_36 = {
15643
+ const Measurevue_type_script_setup_true_lang_js_hoisted_36 = {
14759
15644
  key: 3,
14760
15645
  class: "result"
14761
15646
  };
14762
- const _hoisted_37 = {
15647
+ const Measurevue_type_script_setup_true_lang_js_hoisted_37 = {
14763
15648
  class: "tit"
14764
15649
  };
14765
- const _hoisted_38 = {
15650
+ const Measurevue_type_script_setup_true_lang_js_hoisted_38 = {
14766
15651
  class: "res"
14767
15652
  };
14768
15653
 
@@ -15373,7 +16258,7 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
15373
16258
  }, null, 8 /* PROPS */, ["label", "value"]);
15374
16259
  }), 128 /* KEYED_FRAGMENT */))]),
15375
16260
  _: 1 /* STABLE */
15376
- }, 8 /* PROPS */, ["modelValue"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)])) : (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", Measurevue_type_script_setup_true_lang_js_hoisted_13, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_14, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).measureResult), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType) === 'height' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_15, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_16, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).spaceDistance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_17, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).spaceDistance) + " m", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_18, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).horizontalDistance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_19, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).horizontalDistance) + " m", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_20, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).verticalDistance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_21, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).verticalDistance) + " m", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_22, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).angle), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_23, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).angle) + " °", 1 /* TEXT */)])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType) === 'coordinate' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_24, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_25, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).longitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_26, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).longitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_27, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).latitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", _hoisted_28, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).latitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", _hoisted_29, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).elevation), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", _hoisted_30, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).height) + " m", 1 /* TEXT */)])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType) === 'azimuth' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_31, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", _hoisted_32, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).azimuth), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", _hoisted_33, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).azimuth) + " °", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", _hoisted_34, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).distance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", _hoisted_35, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).distance) + " m", 1 /* TEXT */)])) : ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_36, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", _hoisted_37, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language)[(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType)]), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", _hoisted_38, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result)), 1 /* TEXT */)]))])])])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)])], 2 /* CLASS */);
16261
+ }, 8 /* PROPS */, ["modelValue"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)])) : (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", Measurevue_type_script_setup_true_lang_js_hoisted_13, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_14, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).measureResult), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType) === 'height' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_15, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_16, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).spaceDistance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_17, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).spaceDistance) + " m", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_18, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).horizontalDistance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_19, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).horizontalDistance) + " m", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_20, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).verticalDistance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_21, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).verticalDistance) + " m", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_22, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).angle), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_23, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).angle) + " °", 1 /* TEXT */)])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType) === 'coordinate' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_24, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_25, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).longitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_26, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).longitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_27, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).latitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_28, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).latitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_29, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).elevation), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_30, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).height) + " m", 1 /* TEXT */)])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType) === 'azimuth' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_31, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_32, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).azimuth), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_33, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).azimuth) + " °", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_34, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).distance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_35, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).distance) + " m", 1 /* TEXT */)])) : ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_36, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_37, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language)[(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType)]), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_38, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result)), 1 /* TEXT */)]))])])])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)])], 2 /* CLASS */);
15377
16262
  };
15378
16263
  }
15379
16264
  }));
@@ -21768,14 +22653,6 @@ ScanEffect.install = (Vue, opts) => {
21768
22653
  Vue.component(ScanEffect.name, ScanEffect);
21769
22654
  };
21770
22655
 
21771
- // EXTERNAL MODULE: external "core-js/modules/esnext.iterator.filter.js"
21772
- var esnext_iterator_filter_js_ = __webpack_require__(602);
21773
- // EXTERNAL MODULE: external "core-js/modules/web.url-search-params.delete.js"
21774
- var web_url_search_params_delete_js_ = __webpack_require__(411);
21775
- // EXTERNAL MODULE: external "core-js/modules/web.url-search-params.has.js"
21776
- var web_url_search_params_has_js_ = __webpack_require__(168);
21777
- // EXTERNAL MODULE: external "core-js/modules/web.url-search-params.size.js"
21778
- var web_url_search_params_size_js_ = __webpack_require__(217);
21779
22656
  ;// CONCATENATED MODULE: ./src/webgl/heatmap3d/Heatmap3dViewModel.js
21780
22657
 
21781
22658
  /*
@@ -25299,8 +26176,6 @@ ViewshedAnalysis.install = (Vue, opts) => {
25299
26176
  Vue.component(ViewshedAnalysis.name, ViewshedAnalysis);
25300
26177
  };
25301
26178
 
25302
- // EXTERNAL MODULE: external "core-js/modules/esnext.iterator.map.js"
25303
- var esnext_iterator_map_js_ = __webpack_require__(224);
25304
26179
  ;// CONCATENATED MODULE: ./src/webgl/shadowanalysis/ShadowAnalysisViewModel.js
25305
26180
 
25306
26181
 
@@ -35710,6 +36585,8 @@ class AddDataViewModel {
35710
36585
  if (that._viewer.timeline.container.style.display != 'block') {
35711
36586
  that._viewer.bottomContainer.style.bottom = '15px';
35712
36587
  that._viewer.timeline.container.style.display = 'block';
36588
+ that._viewer.animation.container.style.display = 'block';
36589
+ that._viewer.animation.resize();
35713
36590
  that._viewer.clock.shouldAnimate = true;
35714
36591
  }
35715
36592
  that._viewer.dataSources.add(Cesium.CzmlDataSource.load(ret, {