@kq_npm/client3d_webgl_vue 4.5.17-beta → 4.5.18

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.
@@ -4122,6 +4122,8 @@ var icons_vue_ = __webpack_require__(8422);
4122
4122
  // EXTERNAL MODULE: ./public/libs/kqwebclient/leaflet/3rd-libs/vue3-print-nb/vue3-print-nb.umd.js
4123
4123
  var vue3_print_nb_umd = __webpack_require__(3961);
4124
4124
  var vue3_print_nb_umd_default = /*#__PURE__*/__webpack_require__.n(vue3_print_nb_umd);
4125
+ // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js + 3 modules
4126
+ var defineProperty = __webpack_require__(5301);
4125
4127
  // EXTERNAL MODULE: external "core-js/modules/esnext.iterator.filter.js"
4126
4128
  var esnext_iterator_filter_js_ = __webpack_require__(2753);
4127
4129
  // EXTERNAL MODULE: external "core-js/modules/esnext.iterator.map.js"
@@ -4139,6 +4141,7 @@ var util_ = __webpack_require__(3458);
4139
4141
 
4140
4142
 
4141
4143
 
4144
+
4142
4145
  /**
4143
4146
  * Author: zqp
4144
4147
  * Date: 2022-12-06
@@ -4162,6 +4165,8 @@ class ClientPrintViewModel extends (mitt_default()) {
4162
4165
  * @type {string}
4163
4166
  * @private
4164
4167
  */
4168
+ (0,defineProperty/* default */.Z)(this, "_scenceView_print", null);
4169
+ (0,defineProperty/* default */.Z)(this, "_scenceView_partent", null);
4165
4170
  this._mapTarget = mapTarget;
4166
4171
  /**
4167
4172
  * 要打印的地图
@@ -4185,7 +4190,24 @@ class ClientPrintViewModel extends (mitt_default()) {
4185
4190
  openPrint() {
4186
4191
  gis_utils_.utils.getWebMap(this._mapTarget, this._loadedSync);
4187
4192
  }
4188
-
4193
+ showBaseLayer() {
4194
+ let baseLayerData = this._scenceView_partent?._currentBaseLayerConfig;
4195
+ if (!baseLayerData || baseLayerData == {}) {
4196
+ if (this._scenceView_partent._onlineBaseLayerConfig) {
4197
+ this._scenceView_print && this._scenceView_print.showOnlineBaseLayer(this._scenceView_partent._onlineBaseLayerConfig, true);
4198
+ }
4199
+ } else {
4200
+ this._scenceView_print && this._scenceView_print.showBaseLayer(baseLayerData.layerKey, baseLayerData.layerInfo, true);
4201
+ }
4202
+ }
4203
+ removeBaseLayer() {
4204
+ let baseLayerData = this._scenceView_partent?._currentBaseLayerConfig;
4205
+ if (!baseLayerData) {
4206
+ this._scenceView_print && this._scenceView_print.removeAllOnlineBaseLayer();
4207
+ } else {
4208
+ this._scenceView_print && this._scenceView_print.showBaseLayer(baseLayerData.layerKey, baseLayerData.layerInfo, false);
4209
+ }
4210
+ }
4189
4211
  /**
4190
4212
  * 获取图例
4191
4213
  */
@@ -4475,6 +4497,10 @@ const __default__ = {
4475
4497
  type: Boolean,
4476
4498
  default: false
4477
4499
  },
4500
+ onlyShowCheckLayer: {
4501
+ type: Boolean,
4502
+ default: false
4503
+ },
4478
4504
  // 是否使用自定义地图数据
4479
4505
  useCustomData: {
4480
4506
  type: Boolean,
@@ -4651,10 +4677,12 @@ const __default__ = {
4651
4677
  let legendShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
4652
4678
  // 比例尺显示与隐藏
4653
4679
  let scalesShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
4680
+ //度图的显示与隐藏
4681
+ let basemapShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
4654
4682
  // 指北针的显示与隐藏
4655
4683
  let compassShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
4656
4684
  //经纬度显示与隐藏
4657
- let latlngShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
4685
+ let latlngShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
4658
4686
  //网格的显示与隐藏
4659
4687
  let gridShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
4660
4688
  let printdataShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
@@ -4725,6 +4753,7 @@ const __default__ = {
4725
4753
  global_event_default().getWebMapByMapTarget(props.mapTarget, scenceView => {
4726
4754
  if (scenceView && scenceView._viewer) {
4727
4755
  scenceView_partent = scenceView;
4756
+ viewModel._scenceView_partent = scenceView;
4728
4757
  formItem = scenceView._props;
4729
4758
  showMap.value = true;
4730
4759
  }
@@ -4745,35 +4774,44 @@ const __default__ = {
4745
4774
  global_event_default().getWebMapByMapTarget("scencePrint", scenceView => {
4746
4775
  if (scenceView && scenceView._viewer) {
4747
4776
  scenceView_print = scenceView;
4777
+ viewModel._scenceView_print = scenceView;
4748
4778
  if (!formItem.service && !formItem.scenceInfo) {
4749
4779
  if (scenceView_partent) {
4750
4780
  let _promises = [];
4751
4781
  for (let index = scenceView_partent._layerManager._layerListData.length - 1; index >= 0; index--) {
4752
4782
  const element = scenceView_partent._layerManager._layerListData[index];
4783
+ if (props.onlyShowCheckLayer) {
4784
+ if (!scenceView_partent._layerManager.getLayerCheckedListKey().includes(element.guid)) continue;
4785
+ }
4753
4786
  if (!element.url) element.url = element.data;
4754
- scenceView._layerManager._layerListData.push(element);
4755
- var promise = scenceView._layerManager.addLayerData(element, scenceView_partent._layerManager.getLayerCheckedListKey().includes(element.guid));
4787
+ scenceView_print._layerManager._layerListData.push(element);
4788
+ var promise = scenceView_print._layerManager.addLayerData(element, scenceView_partent._layerManager.getLayerCheckedListKey().includes(element.guid));
4756
4789
  if (promise) {
4757
4790
  _promises.push(promise);
4758
4791
  }
4759
4792
  }
4760
4793
  if (_promises.length > 0) {
4761
4794
  Promise.all(_promises).then(() => {
4762
- scenceView._layerManager._layerTreeData = scenceView._layerManager._layerListData;
4763
- scenceView.fire("resetLayerDatas");
4795
+ scenceView_print._layerManager._layerTreeData = scenceView_print._layerManager._layerListData;
4796
+ scenceView_print.fire("resetLayerDatas");
4764
4797
  });
4765
4798
  } else {
4766
- scenceView._layerManager._layerTreeData = scenceView._layerManager._layerListData;
4767
- scenceView.fire("resetLayerDatas");
4799
+ scenceView_print._layerManager._layerTreeData = scenceView_print._layerManager._layerListData;
4800
+ scenceView_print.fire("resetLayerDatas");
4768
4801
  }
4769
- scenceView.setViewPosition(scenceView_partent.getViewPosition());
4802
+ scenceView_print.setViewPosition(scenceView_partent.getViewPosition());
4770
4803
  }
4771
4804
  }
4805
+ if (basemapShow.value) {
4806
+ setTimeout(() => {
4807
+ viewModel && viewModel.showBaseLayer();
4808
+ }, 100);
4809
+ }
4772
4810
  initControl();
4773
- cameraToImage = new Cesium.Kq3dCanvasToImage(scenceView._viewer._container, {
4774
- viewer: scenceView._viewer,
4775
- canvas: scenceView._viewer.scene.canvas
4776
- });
4811
+ // cameraToImage = new Cesium.Kq3dCanvasToImage(scenceView._viewer._container, {
4812
+ // viewer: scenceView._viewer,
4813
+ // canvas: scenceView._viewer.scene.canvas
4814
+ // });
4777
4815
  }
4778
4816
  });
4779
4817
  // 格式化时间
@@ -4938,7 +4976,23 @@ const __default__ = {
4938
4976
  });
4939
4977
  }
4940
4978
  }
4979
+ /**
4980
+ * 底图的隐藏显示
4981
+ */
4982
+ function changebasemapShow() {
4983
+ if (basemapShow.value) {
4984
+ viewModel && viewModel.showBaseLayer();
4985
+ } else {
4986
+ viewModel && viewModel.removeBaseLayer();
4987
+ }
4988
+ }
4941
4989
 
4990
+ /**
4991
+ * 经纬线显示
4992
+ */
4993
+ function changelatlngShow() {
4994
+ if (scenceView_print) scenceView_print._viewer.cartographicGridLayer.show = latlngShow.value;
4995
+ }
4942
4996
  /**
4943
4997
  * 切换后的左侧高度样式还原
4944
4998
  */
@@ -5199,7 +5253,7 @@ const __default__ = {
5199
5253
  }
5200
5254
  }
5201
5255
  });
5202
- viewModel.getLengend();
5256
+ viewModel && viewModel.getLengend();
5203
5257
  }
5204
5258
  /**
5205
5259
  * 对象属性排序比较
@@ -5668,7 +5722,7 @@ const __default__ = {
5668
5722
  _: 1 /* STABLE */
5669
5723
  })]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
5670
5724
  modelValue: activeNames.value,
5671
- "onUpdate:modelValue": _cache[16] || (_cache[16] = $event => activeNames.value = $event),
5725
+ "onUpdate:modelValue": _cache[18] || (_cache[18] = $event => activeNames.value = $event),
5672
5726
  onChange: changeMainHeight
5673
5727
  }, {
5674
5728
  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, {
@@ -5682,7 +5736,7 @@ const __default__ = {
5682
5736
  }, 8 /* PROPS */, ["class"])]),
5683
5737
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
5684
5738
  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, {
5685
- span: 9
5739
+ span: 5
5686
5740
  }, {
5687
5741
  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, {
5688
5742
  class: "btnStyle",
@@ -5695,7 +5749,7 @@ const __default__ = {
5695
5749
  }, 8 /* PROPS */, ["modelValue"])]),
5696
5750
  _: 1 /* STABLE */
5697
5751
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
5698
- span: 9
5752
+ span: 5
5699
5753
  }, {
5700
5754
  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, {
5701
5755
  class: "btnStyle",
@@ -5707,7 +5761,7 @@ const __default__ = {
5707
5761
  }, 8 /* PROPS */, ["modelValue"])]),
5708
5762
  _: 1 /* STABLE */
5709
5763
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
5710
- span: 6
5764
+ span: 5
5711
5765
  }, {
5712
5766
  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, {
5713
5767
  class: "btnStyle",
@@ -5719,6 +5773,32 @@ const __default__ = {
5719
5773
  _: 1 /* STABLE */
5720
5774
  }, 8 /* PROPS */, ["modelValue"])]),
5721
5775
  _: 1 /* STABLE */
5776
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
5777
+ span: 5
5778
+ }, {
5779
+ 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, {
5780
+ class: "btnStyle",
5781
+ modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(latlngShow),
5782
+ "onUpdate:modelValue": _cache[11] || (_cache[11] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(latlngShow) ? latlngShow.value = $event : latlngShow = $event),
5783
+ onChange: changelatlngShow
5784
+ }, {
5785
+ 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.printlatlng")), 1 /* TEXT */)]),
5786
+ _: 1 /* STABLE */
5787
+ }, 8 /* PROPS */, ["modelValue"])]),
5788
+ _: 1 /* STABLE */
5789
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
5790
+ span: 4
5791
+ }, {
5792
+ 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, {
5793
+ class: "btnStyle",
5794
+ modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(basemapShow),
5795
+ "onUpdate:modelValue": _cache[12] || (_cache[12] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(basemapShow) ? basemapShow.value = $event : basemapShow = $event),
5796
+ onChange: changebasemapShow
5797
+ }, {
5798
+ 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("leaflet.printbasemap")), 1 /* TEXT */)]),
5799
+ _: 1 /* STABLE */
5800
+ }, 8 /* PROPS */, ["modelValue"])]),
5801
+ _: 1 /* STABLE */
5722
5802
  })]),
5723
5803
  _: 1 /* STABLE */
5724
5804
  }), (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, {
@@ -5733,7 +5813,7 @@ const __default__ = {
5733
5813
  }, {
5734
5814
  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, {
5735
5815
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(borderStyleValue),
5736
- "onUpdate:modelValue": _cache[11] || (_cache[11] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(borderStyleValue) ? borderStyleValue.value = $event : borderStyleValue = $event),
5816
+ "onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(borderStyleValue) ? borderStyleValue.value = $event : borderStyleValue = $event),
5737
5817
  onChange: changeBorderStyleData
5738
5818
  }, {
5739
5819
  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, {
@@ -5766,7 +5846,7 @@ const __default__ = {
5766
5846
  }, {
5767
5847
  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, {
5768
5848
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papForm),
5769
- "onUpdate:modelValue": _cache[12] || (_cache[12] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papForm) ? papForm.value = $event : papForm = $event),
5849
+ "onUpdate:modelValue": _cache[14] || (_cache[14] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papForm) ? papForm.value = $event : papForm = $event),
5770
5850
  onChange: changeMapContainerSize
5771
5851
  }, {
5772
5852
  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, {
@@ -5809,7 +5889,7 @@ const __default__ = {
5809
5889
  }, {
5810
5890
  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, {
5811
5891
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papAnchor),
5812
- "onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papAnchor) ? papAnchor.value = $event : papAnchor = $event),
5892
+ "onUpdate:modelValue": _cache[15] || (_cache[15] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papAnchor) ? papAnchor.value = $event : papAnchor = $event),
5813
5893
  onChange: changeMapContainerSize
5814
5894
  }, {
5815
5895
  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, {
@@ -5833,7 +5913,7 @@ const __default__ = {
5833
5913
  }, {
5834
5914
  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, {
5835
5915
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(imageType),
5836
- "onUpdate:modelValue": _cache[14] || (_cache[14] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(imageType) ? imageType.value = $event : imageType = $event)
5916
+ "onUpdate:modelValue": _cache[16] || (_cache[16] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(imageType) ? imageType.value = $event : imageType = $event)
5837
5917
  }, {
5838
5918
  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, {
5839
5919
  value: "png"
@@ -5857,7 +5937,7 @@ const __default__ = {
5857
5937
  _: 1 /* STABLE */
5858
5938
  }, 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, {
5859
5939
  type: "primary",
5860
- onClick: _cache[15] || (_cache[15] = $event => getPic()),
5940
+ onClick: _cache[17] || (_cache[17] = $event => getPic()),
5861
5941
  loading: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(loadState)
5862
5942
  }, {
5863
5943
  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 */)]),
@@ -5910,7 +5990,7 @@ const __default__ = {
5910
5990
  }, {
5911
5991
  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, {
5912
5992
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title,
5913
- "onUpdate:modelValue": _cache[17] || (_cache[17] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title = $event)
5993
+ "onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title = $event)
5914
5994
  }, null, 8 /* PROPS */, ["modelValue"])]),
5915
5995
  _: 1 /* STABLE */
5916
5996
  }, 8 /* PROPS */, ["label"])]),
@@ -5926,7 +6006,7 @@ const __default__ = {
5926
6006
  }, {
5927
6007
  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, {
5928
6008
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily,
5929
- "onUpdate:modelValue": _cache[18] || (_cache[18] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily = $event),
6009
+ "onUpdate:modelValue": _cache[20] || (_cache[20] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily = $event),
5930
6010
  placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseselect,
5931
6011
  style: {
5932
6012
  "width": "100%"
@@ -5958,7 +6038,7 @@ const __default__ = {
5958
6038
  }, {
5959
6039
  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, {
5960
6040
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize,
5961
- "onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize = $event),
6041
+ "onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize = $event),
5962
6042
  placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fontsize
5963
6043
  }, {
5964
6044
  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 => {
@@ -5988,7 +6068,7 @@ const __default__ = {
5988
6068
  }, {
5989
6069
  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, {
5990
6070
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color,
5991
- "onUpdate:modelValue": _cache[20] || (_cache[20] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color = $event),
6071
+ "onUpdate:modelValue": _cache[22] || (_cache[22] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color = $event),
5992
6072
  "show-alpha": ""
5993
6073
  }, null, 8 /* PROPS */, ["modelValue"])]),
5994
6074
  _: 1 /* STABLE */
@@ -6005,7 +6085,7 @@ const __default__ = {
6005
6085
  }, {
6006
6086
  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, {
6007
6087
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor,
6008
- "onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor = $event),
6088
+ "onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor = $event),
6009
6089
  "show-alpha": ""
6010
6090
  }, null, 8 /* PROPS */, ["modelValue"])]),
6011
6091
  _: 1 /* STABLE */
@@ -6019,7 +6099,7 @@ const __default__ = {
6019
6099
  }, {
6020
6100
  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, {
6021
6101
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg,
6022
- "onUpdate:modelValue": _cache[22] || (_cache[22] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg = $event),
6102
+ "onUpdate:modelValue": _cache[24] || (_cache[24] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg = $event),
6023
6103
  "show-alpha": ""
6024
6104
  }, null, 8 /* PROPS */, ["modelValue"])]),
6025
6105
  _: 1 /* STABLE */
@@ -6030,7 +6110,7 @@ const __default__ = {
6030
6110
  }, {
6031
6111
  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, {
6032
6112
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow,
6033
- "onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow = $event)
6113
+ "onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow = $event)
6034
6114
  }, {
6035
6115
  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 */)]),
6036
6116
  _: 1 /* STABLE */
@@ -6040,7 +6120,7 @@ const __default__ = {
6040
6120
  _: 1 /* STABLE */
6041
6121
  }), (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, {
6042
6122
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow,
6043
- "onUpdate:modelValue": _cache[24] || (_cache[24] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow = $event)
6123
+ "onUpdate:modelValue": _cache[26] || (_cache[26] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow = $event)
6044
6124
  }, {
6045
6125
  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 */)]),
6046
6126
  _: 1 /* STABLE */
@@ -6070,7 +6150,7 @@ const __default__ = {
6070
6150
  }, {
6071
6151
  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, {
6072
6152
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName,
6073
- "onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName = $event)
6153
+ "onUpdate:modelValue": _cache[27] || (_cache[27] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName = $event)
6074
6154
  }, null, 8 /* PROPS */, ["modelValue"])]),
6075
6155
  _: 1 /* STABLE */
6076
6156
  }, 8 /* PROPS */, ["label"])]),
@@ -6086,7 +6166,7 @@ const __default__ = {
6086
6166
  }, {
6087
6167
  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, {
6088
6168
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate,
6089
- "onUpdate:modelValue": _cache[26] || (_cache[26] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate = $event),
6169
+ "onUpdate:modelValue": _cache[28] || (_cache[28] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate = $event),
6090
6170
  type: "date",
6091
6171
  clearable: false,
6092
6172
  editable: false,
@@ -6107,7 +6187,7 @@ const __default__ = {
6107
6187
  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, {
6108
6188
  class: "btnStyle",
6109
6189
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printCompanyShow),
6110
- "onUpdate:modelValue": _cache[27] || (_cache[27] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printCompanyShow) ? printCompanyShow.value = $event : printCompanyShow = $event)
6190
+ "onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printCompanyShow) ? printCompanyShow.value = $event : printCompanyShow = $event)
6111
6191
  }, {
6112
6192
  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 */)]),
6113
6193
  _: 1 /* STABLE */
@@ -6119,7 +6199,7 @@ const __default__ = {
6119
6199
  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, {
6120
6200
  class: "btnStyle",
6121
6201
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printdataShow),
6122
- "onUpdate:modelValue": _cache[28] || (_cache[28] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printdataShow) ? printdataShow.value = $event : printdataShow = $event)
6202
+ "onUpdate:modelValue": _cache[30] || (_cache[30] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printdataShow) ? printdataShow.value = $event : printdataShow = $event)
6123
6203
  }, {
6124
6204
  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 */)]),
6125
6205
  _: 1 /* STABLE */
@@ -6149,7 +6229,7 @@ const __default__ = {
6149
6229
  }, {
6150
6230
  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, {
6151
6231
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily,
6152
- "onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily = $event),
6232
+ "onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily = $event),
6153
6233
  placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseselect,
6154
6234
  style: {
6155
6235
  "width": "100%"
@@ -6177,7 +6257,7 @@ const __default__ = {
6177
6257
  }, {
6178
6258
  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, {
6179
6259
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize,
6180
- "onUpdate:modelValue": _cache[30] || (_cache[30] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize = $event),
6260
+ "onUpdate:modelValue": _cache[32] || (_cache[32] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize = $event),
6181
6261
  placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fontsize
6182
6262
  }, {
6183
6263
  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 => {
@@ -6207,7 +6287,7 @@ const __default__ = {
6207
6287
  }, {
6208
6288
  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, {
6209
6289
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color,
6210
- "onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color = $event),
6290
+ "onUpdate:modelValue": _cache[33] || (_cache[33] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color = $event),
6211
6291
  "show-alpha": ""
6212
6292
  }, null, 8 /* PROPS */, ["modelValue"])])]),
6213
6293
  _: 1 /* STABLE */
@@ -6224,7 +6304,7 @@ const __default__ = {
6224
6304
  rows: "12",
6225
6305
  placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseentercontent,
6226
6306
  spellcheck: "false",
6227
- "onUpdate:modelValue": _cache[32] || (_cache[32] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue = $event),
6307
+ "onUpdate:modelValue": _cache[34] || (_cache[34] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue = $event),
6228
6308
  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)
6229
6309
  }, 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]])]),
6230
6310
  _: 1 /* STABLE */
@@ -6408,7 +6488,7 @@ const __default__ = {
6408
6488
  circle: "",
6409
6489
  icon: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.CircleClose),
6410
6490
  title: _ctx.$t('webgl.printclearimg'),
6411
- onClick: _cache[33] || (_cache[33] = $event => handleDeleteCenterPic()),
6491
+ onClick: _cache[35] || (_cache[35] = $event => handleDeleteCenterPic()),
6412
6492
  style: {
6413
6493
  "margin-left": "32px"
6414
6494
  }
@@ -6427,7 +6507,7 @@ const __default__ = {
6427
6507
  }, {
6428
6508
  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, {
6429
6509
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width,
6430
- "onUpdate:modelValue": _cache[34] || (_cache[34] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width = $event),
6510
+ "onUpdate:modelValue": _cache[36] || (_cache[36] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width = $event),
6431
6511
  min: 0,
6432
6512
  "controls-position": "right",
6433
6513
  onChange: _ctx.onChangecenterImg
@@ -6446,7 +6526,7 @@ const __default__ = {
6446
6526
  }, {
6447
6527
  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, {
6448
6528
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height,
6449
- "onUpdate:modelValue": _cache[35] || (_cache[35] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height = $event),
6529
+ "onUpdate:modelValue": _cache[37] || (_cache[37] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height = $event),
6450
6530
  min: 0,
6451
6531
  "controls-position": "right",
6452
6532
  onChange: _ctx.onChangecenterImg
@@ -6492,10 +6572,10 @@ const __default__ = {
6492
6572
  options: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).options,
6493
6573
  service: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).service,
6494
6574
  scenceInfo: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).scenceInfo,
6495
- showToolButtons: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).showToolButtons,
6575
+ showToolButtons: false,
6496
6576
  defaultShowLayerNames: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).defaultShowLayerNames,
6497
- toolButtonsPosition: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).toolButtonsPosition,
6498
- showLogo: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).showLogo,
6577
+ showLogo: false,
6578
+ isInitDrawManager: false,
6499
6579
  style: {
6500
6580
  "position": "relative"
6501
6581
  }
@@ -6567,7 +6647,20 @@ const __default__ = {
6567
6647
  }, null, 8 /* PROPS */, _hoisted_43)], 32 /* HYDRATE_EVENTS */);
6568
6648
  }), 128 /* KEYED_FRAGMENT */))]),
6569
6649
  _: 1 /* STABLE */
6570
- }, 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_44, [(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)("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_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).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 */)]),
6650
+ }, 8 /* PROPS */, ["options", "service", "scenceInfo", "defaultShowLayerNames"])) : (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_44, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
6651
+ 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, {
6652
+ span: 12
6653
+ }, {
6654
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((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)("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 */)], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printCompanyShow)]])]),
6655
+ _: 1 /* STABLE */
6656
+ }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
6657
+ span: 12
6658
+ }, {
6659
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((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).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 */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printdataShow)]])]),
6660
+ _: 1 /* STABLE */
6661
+ })]),
6662
+ _: 1 /* STABLE */
6663
+ })])], 512 /* NEED_PATCH */)]),
6571
6664
  _: 1 /* STABLE */
6572
6665
  })], 512 /* NEED_PATCH */)], 512 /* NEED_PATCH */);
6573
6666
  };
@@ -11986,6 +12079,13 @@ class Heatmap3dViewModel {
11986
12079
  if (this._options.gradient) this._heatmap.gradient = this._options.gradient;
11987
12080
  this._viewer.scene.primitives.add(this._heatmap);
11988
12081
  this._heatmap && this._heatmap.setData(heatmapData);
12082
+ if (this._heatmap) {
12083
+ this._heatmap.readyPromise.then(() => {
12084
+ this._viewer.camera.flyTo({
12085
+ destination: this._heatmap._rectangle
12086
+ });
12087
+ });
12088
+ }
11989
12089
  }
11990
12090
  // 创建二维热力图对象
11991
12091
  initHeatmap2d(heatmapData) {
@@ -12010,6 +12110,9 @@ class Heatmap3dViewModel {
12010
12110
  show: this._options.heatmapType == "2D" ? this._options.isShow : false
12011
12111
  });
12012
12112
  this._viewer.imageryLayers.add(this._heatmap2dCountLayer);
12113
+ this._viewer.camera.flyTo({
12114
+ destination: Cesium.Rectangle.fromDegrees(extent[0], extent[1], extent[2], extent[3])
12115
+ });
12013
12116
  }
12014
12117
  // 切换二维数据
12015
12118
  changeHeatmap2d() {
@@ -12857,17 +12960,16 @@ const __default__ = {
12857
12960
  ref_key: "headerTempRef",
12858
12961
  ref: headerTempRef
12859
12962
  }, null, 512 /* NEED_PATCH */)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", Heatmap3dvue_type_script_setup_true_lang_js_hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
12860
- gutter: 20,
12861
12963
  class: "rowClass"
12862
12964
  }, {
12863
12965
  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, {
12864
- span: 6,
12966
+ span: 7,
12865
12967
  class: "colClass"
12866
12968
  }, {
12867
12969
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).dataPath), 1 /* TEXT */)]),
12868
12970
  _: 1 /* STABLE */
12869
12971
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
12870
- span: 18
12972
+ span: 17
12871
12973
  }, {
12872
12974
  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, {
12873
12975
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).dataPath,
@@ -12898,17 +13000,16 @@ const __default__ = {
12898
13000
  })]),
12899
13001
  _: 1 /* STABLE */
12900
13002
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
12901
- gutter: 20,
12902
13003
  class: "rowClass"
12903
13004
  }, {
12904
13005
  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, {
12905
- span: 6,
13006
+ span: 7,
12906
13007
  class: "colClass"
12907
13008
  }, {
12908
13009
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_3, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).heatmapType), 1 /* TEXT */)]),
12909
13010
  _: 1 /* STABLE */
12910
13011
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
12911
- span: 18
13012
+ span: 17
12912
13013
  }, {
12913
13014
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio_group, {
12914
13015
  modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).heatmapType,
@@ -12918,7 +13019,7 @@ const __default__ = {
12918
13019
  label: "3D",
12919
13020
  onChange: _cache[2] || (_cache[2] = $event => paramsChanged('heatmapType'))
12920
13021
  }, {
12921
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("3D")]),
13022
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).classic3d), 1 /* TEXT */)]),
12922
13023
  _: 1 /* STABLE */
12923
13024
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
12924
13025
  label: "2D",
@@ -13166,7 +13267,7 @@ const __default__ = {
13166
13267
  _: 1 /* STABLE */
13167
13268
  }), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
13168
13269
  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, {
13169
- label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).height
13270
+ label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).height + '(m)'
13170
13271
  }, {
13171
13272
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
13172
13273
  style: {
@@ -32180,8 +32281,6 @@ function delTreeDataByGuid(data, guid) {
32180
32281
 
32181
32282
 
32182
32283
  class SceneViewViewModel extends (mitt_default()) {
32183
- //底图集合
32184
-
32185
32284
  constructor(props, lang) {
32186
32285
  super();
32187
32286
  (0,defineProperty/* default */.Z)(this, "_viewerId", "");
@@ -32197,6 +32296,9 @@ class SceneViewViewModel extends (mitt_default()) {
32197
32296
  (0,defineProperty/* default */.Z)(this, "_props", null);
32198
32297
  (0,defineProperty/* default */.Z)(this, "_removeEventListener", null);
32199
32298
  (0,defineProperty/* default */.Z)(this, "_baseLayers", {});
32299
+ //底图集合
32300
+ (0,defineProperty/* default */.Z)(this, "_onlineBaseLayerConfig", null);
32301
+ (0,defineProperty/* default */.Z)(this, "_currentBaseLayerConfig", null);
32200
32302
  this._viewerId = props.target;
32201
32303
  this._props = props;
32202
32304
  this._lang = lang;
@@ -32289,7 +32391,7 @@ class SceneViewViewModel extends (mitt_default()) {
32289
32391
  //初始化操作类
32290
32392
  initManagerClass() {
32291
32393
  if (this._viewer) {
32292
- this._drawManager = new DrawManager(this._viewer, this._lang.language);
32394
+ if (this._props.isInitDrawManager) this._drawManager = new DrawManager(this._viewer, this._lang.language);
32293
32395
  this._layerManager = new LayerManager(this);
32294
32396
  }
32295
32397
  }
@@ -32414,6 +32516,10 @@ class SceneViewViewModel extends (mitt_default()) {
32414
32516
  * @param visible 显隐
32415
32517
  */
32416
32518
  showBaseLayer(layerKey, layerInfo, visible) {
32519
+ this._currentBaseLayerConfig = {
32520
+ layerKey: layerKey,
32521
+ layerInfo: layerInfo
32522
+ };
32417
32523
  let layers = this._baseLayers[layerKey];
32418
32524
  if (!layers) {
32419
32525
  layers = [];
@@ -32441,7 +32547,7 @@ class SceneViewViewModel extends (mitt_default()) {
32441
32547
  * 获取底图数据
32442
32548
  */
32443
32549
  getBaseLayerData() {
32444
- return JSON.parse(JSON.stringify(this._baseLayers));
32550
+ return Object.assign({}, this._baseLayers);
32445
32551
  }
32446
32552
  /**
32447
32553
  * 获取在线底图index
@@ -32545,6 +32651,7 @@ class SceneViewViewModel extends (mitt_default()) {
32545
32651
  * @param {boolean} visible 显隐
32546
32652
  */
32547
32653
  showOnlineBaseLayer(layerConfig, visible) {
32654
+ this._onlineBaseLayerConfig = layerConfig;
32548
32655
  let guid = layerConfig.guid;
32549
32656
  let imageryLayers = this._viewer.imageryLayers._layers;
32550
32657
  let layer = imageryLayers.find(item => {
@@ -32652,6 +32759,11 @@ const __default__ = {
32652
32759
  scenceInfo: Object,
32653
32760
  // 默认显示的图层组名称
32654
32761
  defaultShowLayerNames: Array,
32762
+ // 是否初始化绘制类
32763
+ isInitDrawManager: {
32764
+ type: Boolean,
32765
+ default: true
32766
+ },
32655
32767
  showToolButtons: {
32656
32768
  type: Boolean,
32657
32769
  default: true