@kq_npm/client3d_webgl_vue 4.5.16 → 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.
- package/adddata/index.js +4 -2
- package/aspectanalysis/index.js +3 -1
- package/boxclip/index.js +3 -1
- package/clientPrint/index.js +1962 -1794
- package/excavatefillanalysis/index.js +3 -1
- package/flight/index.js +3 -1
- package/floodanalysis/index.js +3 -1
- package/geologicalbodyanalysis/index.js +3 -1
- package/gpuspatialquery/index.js +3 -1
- package/heatmap3d/index.js +19 -9
- package/index.js +330 -188
- package/isolineanalysis/index.js +3 -1
- package/light/index.js +3 -1
- package/limitheightanalysis/index.js +3 -1
- package/measure/index.js +256 -233
- package/modelFlat/index.js +3 -1
- package/modelexcavate/index.js +3 -1
- package/modelfilter/index.js +3 -1
- package/modelprofileanalysis/index.js +3 -1
- package/modelselect/index.js +3 -1
- package/package.json +1 -1
- package/particleeffect/index.js +3 -1
- package/planeclip/index.js +3 -1
- package/roller/index.js +3 -1
- package/scaneffect/index.js +3 -1
- package/sceneadvancedtoimage/index.js +4 -2
- package/sceneapp/index.js +1053 -27
- package/sceneset/index.js +10 -8
- package/scenetohdimage/index.js +3 -1
- package/sceneview/index.js +1962 -1794
- package/screenshot/index.js +3 -1
- package/shadowanalysis/index.js +3 -1
- package/sightlineanalysis/index.js +3 -1
- package/skylineanalysis/index.js +3 -1
- package/slopeanalysis/index.js +3 -1
- package/slopeaspectanalysis/index.js +3 -1
- package/terrainoperation/index.js +3 -1
- package/terrainprofileanalysis/index.js +3 -1
- package/videofusion/index.js +3 -1
- package/videoproject/index.js +3 -1
- package/viewshedanalysis/index.js +3 -1
- package/weathereffect/index.js +3 -1
- package/wireframesketch/index.js +3 -1
package/index.js
CHANGED
|
@@ -466,7 +466,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".tool-bar-wrapper .tool-bar-wrapper-it
|
|
|
466
466
|
|
|
467
467
|
/***/ }),
|
|
468
468
|
|
|
469
|
-
/***/
|
|
469
|
+
/***/ 8:
|
|
470
470
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
471
471
|
|
|
472
472
|
"use strict";
|
|
@@ -483,7 +483,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".tool-box-wrapper-3d .kq-icon_grid{col
|
|
|
483
483
|
|
|
484
484
|
/***/ }),
|
|
485
485
|
|
|
486
|
-
/***/
|
|
486
|
+
/***/ 188:
|
|
487
487
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
488
488
|
|
|
489
489
|
"use strict";
|
|
@@ -3932,8 +3932,6 @@ function delTreeDataByGuid(data, guid) {
|
|
|
3932
3932
|
|
|
3933
3933
|
|
|
3934
3934
|
class SceneViewViewModel extends (mitt_default()) {
|
|
3935
|
-
//底图集合
|
|
3936
|
-
|
|
3937
3935
|
constructor(props, lang) {
|
|
3938
3936
|
super();
|
|
3939
3937
|
_defineProperty(this, "_viewerId", "");
|
|
@@ -3949,6 +3947,9 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
3949
3947
|
_defineProperty(this, "_props", null);
|
|
3950
3948
|
_defineProperty(this, "_removeEventListener", null);
|
|
3951
3949
|
_defineProperty(this, "_baseLayers", {});
|
|
3950
|
+
//底图集合
|
|
3951
|
+
_defineProperty(this, "_onlineBaseLayerConfig", null);
|
|
3952
|
+
_defineProperty(this, "_currentBaseLayerConfig", null);
|
|
3952
3953
|
this._viewerId = props.target;
|
|
3953
3954
|
this._props = props;
|
|
3954
3955
|
this._lang = lang;
|
|
@@ -4041,7 +4042,7 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
4041
4042
|
//初始化操作类
|
|
4042
4043
|
initManagerClass() {
|
|
4043
4044
|
if (this._viewer) {
|
|
4044
|
-
this._drawManager = new DrawManager(this._viewer, this._lang.language);
|
|
4045
|
+
if (this._props.isInitDrawManager) this._drawManager = new DrawManager(this._viewer, this._lang.language);
|
|
4045
4046
|
this._layerManager = new LayerManager(this);
|
|
4046
4047
|
}
|
|
4047
4048
|
}
|
|
@@ -4166,6 +4167,10 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
4166
4167
|
* @param visible 显隐
|
|
4167
4168
|
*/
|
|
4168
4169
|
showBaseLayer(layerKey, layerInfo, visible) {
|
|
4170
|
+
this._currentBaseLayerConfig = {
|
|
4171
|
+
layerKey: layerKey,
|
|
4172
|
+
layerInfo: layerInfo
|
|
4173
|
+
};
|
|
4169
4174
|
let layers = this._baseLayers[layerKey];
|
|
4170
4175
|
if (!layers) {
|
|
4171
4176
|
layers = [];
|
|
@@ -4193,7 +4198,7 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
4193
4198
|
* 获取底图数据
|
|
4194
4199
|
*/
|
|
4195
4200
|
getBaseLayerData() {
|
|
4196
|
-
return
|
|
4201
|
+
return Object.assign({}, this._baseLayers);
|
|
4197
4202
|
}
|
|
4198
4203
|
/**
|
|
4199
4204
|
* 获取在线底图index
|
|
@@ -4297,6 +4302,7 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
4297
4302
|
* @param {boolean} visible 显隐
|
|
4298
4303
|
*/
|
|
4299
4304
|
showOnlineBaseLayer(layerConfig, visible) {
|
|
4305
|
+
this._onlineBaseLayerConfig = layerConfig;
|
|
4300
4306
|
let guid = layerConfig.guid;
|
|
4301
4307
|
let imageryLayers = this._viewer.imageryLayers._layers;
|
|
4302
4308
|
let layer = imageryLayers.find(item => {
|
|
@@ -4404,6 +4410,11 @@ const __default__ = {
|
|
|
4404
4410
|
scenceInfo: Object,
|
|
4405
4411
|
// 默认显示的图层组名称
|
|
4406
4412
|
defaultShowLayerNames: Array,
|
|
4413
|
+
// 是否初始化绘制类
|
|
4414
|
+
isInitDrawManager: {
|
|
4415
|
+
type: Boolean,
|
|
4416
|
+
default: true
|
|
4417
|
+
},
|
|
4407
4418
|
showToolButtons: {
|
|
4408
4419
|
type: Boolean,
|
|
4409
4420
|
default: true
|
|
@@ -5172,6 +5183,7 @@ var esnext_iterator_map_js_ = __webpack_require__(170);
|
|
|
5172
5183
|
|
|
5173
5184
|
|
|
5174
5185
|
|
|
5186
|
+
|
|
5175
5187
|
/**
|
|
5176
5188
|
* Author: zqp
|
|
5177
5189
|
* Date: 2022-12-06
|
|
@@ -5195,6 +5207,8 @@ class ClientPrintViewModel extends (mitt_default()) {
|
|
|
5195
5207
|
* @type {string}
|
|
5196
5208
|
* @private
|
|
5197
5209
|
*/
|
|
5210
|
+
_defineProperty(this, "_scenceView_print", null);
|
|
5211
|
+
_defineProperty(this, "_scenceView_partent", null);
|
|
5198
5212
|
this._mapTarget = mapTarget;
|
|
5199
5213
|
/**
|
|
5200
5214
|
* 要打印的地图
|
|
@@ -5218,7 +5232,24 @@ class ClientPrintViewModel extends (mitt_default()) {
|
|
|
5218
5232
|
openPrint() {
|
|
5219
5233
|
gis_utils_.utils.getWebMap(this._mapTarget, this._loadedSync);
|
|
5220
5234
|
}
|
|
5221
|
-
|
|
5235
|
+
showBaseLayer() {
|
|
5236
|
+
let baseLayerData = this._scenceView_partent?._currentBaseLayerConfig;
|
|
5237
|
+
if (!baseLayerData || baseLayerData == {}) {
|
|
5238
|
+
if (this._scenceView_partent._onlineBaseLayerConfig) {
|
|
5239
|
+
this._scenceView_print && this._scenceView_print.showOnlineBaseLayer(this._scenceView_partent._onlineBaseLayerConfig, true);
|
|
5240
|
+
}
|
|
5241
|
+
} else {
|
|
5242
|
+
this._scenceView_print && this._scenceView_print.showBaseLayer(baseLayerData.layerKey, baseLayerData.layerInfo, true);
|
|
5243
|
+
}
|
|
5244
|
+
}
|
|
5245
|
+
removeBaseLayer() {
|
|
5246
|
+
let baseLayerData = this._scenceView_partent?._currentBaseLayerConfig;
|
|
5247
|
+
if (!baseLayerData) {
|
|
5248
|
+
this._scenceView_print && this._scenceView_print.removeAllOnlineBaseLayer();
|
|
5249
|
+
} else {
|
|
5250
|
+
this._scenceView_print && this._scenceView_print.showBaseLayer(baseLayerData.layerKey, baseLayerData.layerInfo, false);
|
|
5251
|
+
}
|
|
5252
|
+
}
|
|
5222
5253
|
/**
|
|
5223
5254
|
* 获取图例
|
|
5224
5255
|
*/
|
|
@@ -5414,34 +5445,28 @@ const _hoisted_33 = {
|
|
|
5414
5445
|
};
|
|
5415
5446
|
const _hoisted_34 = ["src"];
|
|
5416
5447
|
const _hoisted_35 = {
|
|
5417
|
-
class: "show-right-box-btn"
|
|
5418
|
-
};
|
|
5419
|
-
const _hoisted_36 = {
|
|
5420
|
-
class: "btn-group"
|
|
5421
|
-
};
|
|
5422
|
-
const _hoisted_37 = {
|
|
5423
5448
|
class: "kq3d-client-print-titleContainerDiv"
|
|
5424
5449
|
};
|
|
5425
|
-
const
|
|
5450
|
+
const _hoisted_36 = {
|
|
5426
5451
|
key: 0,
|
|
5427
5452
|
class: "lengendTitle"
|
|
5428
5453
|
};
|
|
5429
|
-
const
|
|
5430
|
-
const
|
|
5431
|
-
const
|
|
5454
|
+
const _hoisted_37 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, "图例", -1 /* HOISTED */);
|
|
5455
|
+
const _hoisted_38 = [_hoisted_37];
|
|
5456
|
+
const _hoisted_39 = {
|
|
5432
5457
|
class: "legend-panel"
|
|
5433
5458
|
};
|
|
5434
|
-
const
|
|
5435
|
-
const
|
|
5436
|
-
const
|
|
5437
|
-
const
|
|
5438
|
-
const
|
|
5459
|
+
const _hoisted_40 = ["src"];
|
|
5460
|
+
const _hoisted_41 = ["id"];
|
|
5461
|
+
const _hoisted_42 = ["onClick"];
|
|
5462
|
+
const _hoisted_43 = ["src", "width", "height"];
|
|
5463
|
+
const _hoisted_44 = {
|
|
5439
5464
|
class: "kq3d-client-print-infomationContainer"
|
|
5440
5465
|
};
|
|
5441
|
-
const
|
|
5466
|
+
const _hoisted_45 = {
|
|
5442
5467
|
class: "kq3d-client-print-companyName"
|
|
5443
5468
|
};
|
|
5444
|
-
const
|
|
5469
|
+
const _hoisted_46 = {
|
|
5445
5470
|
class: "kq3d-client-print-systemTime"
|
|
5446
5471
|
};
|
|
5447
5472
|
|
|
@@ -5507,6 +5532,10 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5507
5532
|
type: Boolean,
|
|
5508
5533
|
default: false
|
|
5509
5534
|
},
|
|
5535
|
+
onlyShowCheckLayer: {
|
|
5536
|
+
type: Boolean,
|
|
5537
|
+
default: false
|
|
5538
|
+
},
|
|
5510
5539
|
// 是否使用自定义地图数据
|
|
5511
5540
|
useCustomData: {
|
|
5512
5541
|
type: Boolean,
|
|
@@ -5683,10 +5712,12 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5683
5712
|
let legendShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
5684
5713
|
// 比例尺显示与隐藏
|
|
5685
5714
|
let scalesShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
5715
|
+
//度图的显示与隐藏
|
|
5716
|
+
let basemapShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
5686
5717
|
// 指北针的显示与隐藏
|
|
5687
5718
|
let compassShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
5688
5719
|
//经纬度显示与隐藏
|
|
5689
|
-
let latlngShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(
|
|
5720
|
+
let latlngShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
5690
5721
|
//网格的显示与隐藏
|
|
5691
5722
|
let gridShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
5692
5723
|
let printdataShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
@@ -5757,6 +5788,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5757
5788
|
global_event_default().getWebMapByMapTarget(props.mapTarget, scenceView => {
|
|
5758
5789
|
if (scenceView && scenceView._viewer) {
|
|
5759
5790
|
scenceView_partent = scenceView;
|
|
5791
|
+
viewModel._scenceView_partent = scenceView;
|
|
5760
5792
|
formItem = scenceView._props;
|
|
5761
5793
|
showMap.value = true;
|
|
5762
5794
|
}
|
|
@@ -5777,32 +5809,44 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5777
5809
|
global_event_default().getWebMapByMapTarget("scencePrint", scenceView => {
|
|
5778
5810
|
if (scenceView && scenceView._viewer) {
|
|
5779
5811
|
scenceView_print = scenceView;
|
|
5812
|
+
viewModel._scenceView_print = scenceView;
|
|
5780
5813
|
if (!formItem.service && !formItem.scenceInfo) {
|
|
5781
5814
|
if (scenceView_partent) {
|
|
5782
5815
|
let _promises = [];
|
|
5783
5816
|
for (let index = scenceView_partent._layerManager._layerListData.length - 1; index >= 0; index--) {
|
|
5784
5817
|
const element = scenceView_partent._layerManager._layerListData[index];
|
|
5818
|
+
if (props.onlyShowCheckLayer) {
|
|
5819
|
+
if (!scenceView_partent._layerManager.getLayerCheckedListKey().includes(element.guid)) continue;
|
|
5820
|
+
}
|
|
5785
5821
|
if (!element.url) element.url = element.data;
|
|
5786
|
-
|
|
5787
|
-
var promise =
|
|
5822
|
+
scenceView_print._layerManager._layerListData.push(element);
|
|
5823
|
+
var promise = scenceView_print._layerManager.addLayerData(element, scenceView_partent._layerManager.getLayerCheckedListKey().includes(element.guid));
|
|
5788
5824
|
if (promise) {
|
|
5789
5825
|
_promises.push(promise);
|
|
5790
5826
|
}
|
|
5791
5827
|
}
|
|
5792
5828
|
if (_promises.length > 0) {
|
|
5793
5829
|
Promise.all(_promises).then(() => {
|
|
5794
|
-
|
|
5795
|
-
|
|
5830
|
+
scenceView_print._layerManager._layerTreeData = scenceView_print._layerManager._layerListData;
|
|
5831
|
+
scenceView_print.fire("resetLayerDatas");
|
|
5796
5832
|
});
|
|
5797
|
-
|
|
5833
|
+
} else {
|
|
5834
|
+
scenceView_print._layerManager._layerTreeData = scenceView_print._layerManager._layerListData;
|
|
5835
|
+
scenceView_print.fire("resetLayerDatas");
|
|
5798
5836
|
}
|
|
5837
|
+
scenceView_print.setViewPosition(scenceView_partent.getViewPosition());
|
|
5799
5838
|
}
|
|
5800
5839
|
}
|
|
5840
|
+
if (basemapShow.value) {
|
|
5841
|
+
setTimeout(() => {
|
|
5842
|
+
viewModel && viewModel.showBaseLayer();
|
|
5843
|
+
}, 100);
|
|
5844
|
+
}
|
|
5801
5845
|
initControl();
|
|
5802
|
-
cameraToImage = new Cesium.Kq3dCanvasToImage(scenceView._viewer._container, {
|
|
5803
|
-
|
|
5804
|
-
|
|
5805
|
-
});
|
|
5846
|
+
// cameraToImage = new Cesium.Kq3dCanvasToImage(scenceView._viewer._container, {
|
|
5847
|
+
// viewer: scenceView._viewer,
|
|
5848
|
+
// canvas: scenceView._viewer.scene.canvas
|
|
5849
|
+
// });
|
|
5806
5850
|
}
|
|
5807
5851
|
});
|
|
5808
5852
|
// 格式化时间
|
|
@@ -5967,7 +6011,23 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5967
6011
|
});
|
|
5968
6012
|
}
|
|
5969
6013
|
}
|
|
6014
|
+
/**
|
|
6015
|
+
* 底图的隐藏显示
|
|
6016
|
+
*/
|
|
6017
|
+
function changebasemapShow() {
|
|
6018
|
+
if (basemapShow.value) {
|
|
6019
|
+
viewModel && viewModel.showBaseLayer();
|
|
6020
|
+
} else {
|
|
6021
|
+
viewModel && viewModel.removeBaseLayer();
|
|
6022
|
+
}
|
|
6023
|
+
}
|
|
5970
6024
|
|
|
6025
|
+
/**
|
|
6026
|
+
* 经纬线显示
|
|
6027
|
+
*/
|
|
6028
|
+
function changelatlngShow() {
|
|
6029
|
+
if (scenceView_print) scenceView_print._viewer.cartographicGridLayer.show = latlngShow.value;
|
|
6030
|
+
}
|
|
5971
6031
|
/**
|
|
5972
6032
|
* 切换后的左侧高度样式还原
|
|
5973
6033
|
*/
|
|
@@ -6228,7 +6288,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6228
6288
|
}
|
|
6229
6289
|
}
|
|
6230
6290
|
});
|
|
6231
|
-
viewModel.getLengend();
|
|
6291
|
+
viewModel && viewModel.getLengend();
|
|
6232
6292
|
}
|
|
6233
6293
|
/**
|
|
6234
6294
|
* 对象属性排序比较
|
|
@@ -6697,7 +6757,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6697
6757
|
_: 1 /* STABLE */
|
|
6698
6758
|
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
|
|
6699
6759
|
modelValue: activeNames.value,
|
|
6700
|
-
"onUpdate:modelValue": _cache[
|
|
6760
|
+
"onUpdate:modelValue": _cache[18] || (_cache[18] = $event => activeNames.value = $event),
|
|
6701
6761
|
onChange: changeMainHeight
|
|
6702
6762
|
}, {
|
|
6703
6763
|
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, {
|
|
@@ -6711,7 +6771,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6711
6771
|
}, 8 /* PROPS */, ["class"])]),
|
|
6712
6772
|
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, {
|
|
6713
6773
|
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, {
|
|
6714
|
-
span:
|
|
6774
|
+
span: 5
|
|
6715
6775
|
}, {
|
|
6716
6776
|
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, {
|
|
6717
6777
|
class: "btnStyle",
|
|
@@ -6724,7 +6784,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6724
6784
|
}, 8 /* PROPS */, ["modelValue"])]),
|
|
6725
6785
|
_: 1 /* STABLE */
|
|
6726
6786
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
6727
|
-
span:
|
|
6787
|
+
span: 5
|
|
6728
6788
|
}, {
|
|
6729
6789
|
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, {
|
|
6730
6790
|
class: "btnStyle",
|
|
@@ -6736,7 +6796,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6736
6796
|
}, 8 /* PROPS */, ["modelValue"])]),
|
|
6737
6797
|
_: 1 /* STABLE */
|
|
6738
6798
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
6739
|
-
span:
|
|
6799
|
+
span: 5
|
|
6740
6800
|
}, {
|
|
6741
6801
|
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, {
|
|
6742
6802
|
class: "btnStyle",
|
|
@@ -6748,6 +6808,32 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6748
6808
|
_: 1 /* STABLE */
|
|
6749
6809
|
}, 8 /* PROPS */, ["modelValue"])]),
|
|
6750
6810
|
_: 1 /* STABLE */
|
|
6811
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
6812
|
+
span: 5
|
|
6813
|
+
}, {
|
|
6814
|
+
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, {
|
|
6815
|
+
class: "btnStyle",
|
|
6816
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(latlngShow),
|
|
6817
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(latlngShow) ? latlngShow.value = $event : latlngShow = $event),
|
|
6818
|
+
onChange: changelatlngShow
|
|
6819
|
+
}, {
|
|
6820
|
+
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 */)]),
|
|
6821
|
+
_: 1 /* STABLE */
|
|
6822
|
+
}, 8 /* PROPS */, ["modelValue"])]),
|
|
6823
|
+
_: 1 /* STABLE */
|
|
6824
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
6825
|
+
span: 4
|
|
6826
|
+
}, {
|
|
6827
|
+
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, {
|
|
6828
|
+
class: "btnStyle",
|
|
6829
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(basemapShow),
|
|
6830
|
+
"onUpdate:modelValue": _cache[12] || (_cache[12] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(basemapShow) ? basemapShow.value = $event : basemapShow = $event),
|
|
6831
|
+
onChange: changebasemapShow
|
|
6832
|
+
}, {
|
|
6833
|
+
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 */)]),
|
|
6834
|
+
_: 1 /* STABLE */
|
|
6835
|
+
}, 8 /* PROPS */, ["modelValue"])]),
|
|
6836
|
+
_: 1 /* STABLE */
|
|
6751
6837
|
})]),
|
|
6752
6838
|
_: 1 /* STABLE */
|
|
6753
6839
|
}), (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, {
|
|
@@ -6762,7 +6848,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6762
6848
|
}, {
|
|
6763
6849
|
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, {
|
|
6764
6850
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(borderStyleValue),
|
|
6765
|
-
"onUpdate:modelValue": _cache[
|
|
6851
|
+
"onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(borderStyleValue) ? borderStyleValue.value = $event : borderStyleValue = $event),
|
|
6766
6852
|
onChange: changeBorderStyleData
|
|
6767
6853
|
}, {
|
|
6768
6854
|
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, {
|
|
@@ -6795,7 +6881,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6795
6881
|
}, {
|
|
6796
6882
|
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, {
|
|
6797
6883
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papForm),
|
|
6798
|
-
"onUpdate:modelValue": _cache[
|
|
6884
|
+
"onUpdate:modelValue": _cache[14] || (_cache[14] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papForm) ? papForm.value = $event : papForm = $event),
|
|
6799
6885
|
onChange: changeMapContainerSize
|
|
6800
6886
|
}, {
|
|
6801
6887
|
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, {
|
|
@@ -6838,7 +6924,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6838
6924
|
}, {
|
|
6839
6925
|
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, {
|
|
6840
6926
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papAnchor),
|
|
6841
|
-
"onUpdate:modelValue": _cache[
|
|
6927
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papAnchor) ? papAnchor.value = $event : papAnchor = $event),
|
|
6842
6928
|
onChange: changeMapContainerSize
|
|
6843
6929
|
}, {
|
|
6844
6930
|
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, {
|
|
@@ -6862,7 +6948,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6862
6948
|
}, {
|
|
6863
6949
|
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, {
|
|
6864
6950
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(imageType),
|
|
6865
|
-
"onUpdate:modelValue": _cache[
|
|
6951
|
+
"onUpdate:modelValue": _cache[16] || (_cache[16] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(imageType) ? imageType.value = $event : imageType = $event)
|
|
6866
6952
|
}, {
|
|
6867
6953
|
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, {
|
|
6868
6954
|
value: "png"
|
|
@@ -6886,7 +6972,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6886
6972
|
_: 1 /* STABLE */
|
|
6887
6973
|
}, 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, {
|
|
6888
6974
|
type: "primary",
|
|
6889
|
-
onClick: _cache[
|
|
6975
|
+
onClick: _cache[17] || (_cache[17] = $event => getPic()),
|
|
6890
6976
|
loading: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(loadState)
|
|
6891
6977
|
}, {
|
|
6892
6978
|
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 */)]),
|
|
@@ -6939,7 +7025,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6939
7025
|
}, {
|
|
6940
7026
|
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, {
|
|
6941
7027
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title,
|
|
6942
|
-
"onUpdate:modelValue": _cache[
|
|
7028
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title = $event)
|
|
6943
7029
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
6944
7030
|
_: 1 /* STABLE */
|
|
6945
7031
|
}, 8 /* PROPS */, ["label"])]),
|
|
@@ -6955,7 +7041,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6955
7041
|
}, {
|
|
6956
7042
|
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, {
|
|
6957
7043
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily,
|
|
6958
|
-
"onUpdate:modelValue": _cache[
|
|
7044
|
+
"onUpdate:modelValue": _cache[20] || (_cache[20] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily = $event),
|
|
6959
7045
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseselect,
|
|
6960
7046
|
style: {
|
|
6961
7047
|
"width": "100%"
|
|
@@ -6987,7 +7073,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6987
7073
|
}, {
|
|
6988
7074
|
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, {
|
|
6989
7075
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize,
|
|
6990
|
-
"onUpdate:modelValue": _cache[
|
|
7076
|
+
"onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize = $event),
|
|
6991
7077
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fontsize
|
|
6992
7078
|
}, {
|
|
6993
7079
|
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 => {
|
|
@@ -7017,7 +7103,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7017
7103
|
}, {
|
|
7018
7104
|
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, {
|
|
7019
7105
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color,
|
|
7020
|
-
"onUpdate:modelValue": _cache[
|
|
7106
|
+
"onUpdate:modelValue": _cache[22] || (_cache[22] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color = $event),
|
|
7021
7107
|
"show-alpha": ""
|
|
7022
7108
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
7023
7109
|
_: 1 /* STABLE */
|
|
@@ -7034,7 +7120,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7034
7120
|
}, {
|
|
7035
7121
|
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, {
|
|
7036
7122
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor,
|
|
7037
|
-
"onUpdate:modelValue": _cache[
|
|
7123
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor = $event),
|
|
7038
7124
|
"show-alpha": ""
|
|
7039
7125
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
7040
7126
|
_: 1 /* STABLE */
|
|
@@ -7048,7 +7134,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7048
7134
|
}, {
|
|
7049
7135
|
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, {
|
|
7050
7136
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg,
|
|
7051
|
-
"onUpdate:modelValue": _cache[
|
|
7137
|
+
"onUpdate:modelValue": _cache[24] || (_cache[24] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg = $event),
|
|
7052
7138
|
"show-alpha": ""
|
|
7053
7139
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
7054
7140
|
_: 1 /* STABLE */
|
|
@@ -7059,7 +7145,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7059
7145
|
}, {
|
|
7060
7146
|
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, {
|
|
7061
7147
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow,
|
|
7062
|
-
"onUpdate:modelValue": _cache[
|
|
7148
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow = $event)
|
|
7063
7149
|
}, {
|
|
7064
7150
|
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 */)]),
|
|
7065
7151
|
_: 1 /* STABLE */
|
|
@@ -7069,7 +7155,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7069
7155
|
_: 1 /* STABLE */
|
|
7070
7156
|
}), (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, {
|
|
7071
7157
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow,
|
|
7072
|
-
"onUpdate:modelValue": _cache[
|
|
7158
|
+
"onUpdate:modelValue": _cache[26] || (_cache[26] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow = $event)
|
|
7073
7159
|
}, {
|
|
7074
7160
|
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 */)]),
|
|
7075
7161
|
_: 1 /* STABLE */
|
|
@@ -7099,7 +7185,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7099
7185
|
}, {
|
|
7100
7186
|
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, {
|
|
7101
7187
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName,
|
|
7102
|
-
"onUpdate:modelValue": _cache[
|
|
7188
|
+
"onUpdate:modelValue": _cache[27] || (_cache[27] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName = $event)
|
|
7103
7189
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
7104
7190
|
_: 1 /* STABLE */
|
|
7105
7191
|
}, 8 /* PROPS */, ["label"])]),
|
|
@@ -7115,7 +7201,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7115
7201
|
}, {
|
|
7116
7202
|
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, {
|
|
7117
7203
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate,
|
|
7118
|
-
"onUpdate:modelValue": _cache[
|
|
7204
|
+
"onUpdate:modelValue": _cache[28] || (_cache[28] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate = $event),
|
|
7119
7205
|
type: "date",
|
|
7120
7206
|
clearable: false,
|
|
7121
7207
|
editable: false,
|
|
@@ -7136,7 +7222,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7136
7222
|
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, {
|
|
7137
7223
|
class: "btnStyle",
|
|
7138
7224
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printCompanyShow),
|
|
7139
|
-
"onUpdate:modelValue": _cache[
|
|
7225
|
+
"onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printCompanyShow) ? printCompanyShow.value = $event : printCompanyShow = $event)
|
|
7140
7226
|
}, {
|
|
7141
7227
|
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 */)]),
|
|
7142
7228
|
_: 1 /* STABLE */
|
|
@@ -7148,7 +7234,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7148
7234
|
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, {
|
|
7149
7235
|
class: "btnStyle",
|
|
7150
7236
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printdataShow),
|
|
7151
|
-
"onUpdate:modelValue": _cache[
|
|
7237
|
+
"onUpdate:modelValue": _cache[30] || (_cache[30] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printdataShow) ? printdataShow.value = $event : printdataShow = $event)
|
|
7152
7238
|
}, {
|
|
7153
7239
|
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 */)]),
|
|
7154
7240
|
_: 1 /* STABLE */
|
|
@@ -7178,7 +7264,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7178
7264
|
}, {
|
|
7179
7265
|
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, {
|
|
7180
7266
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily,
|
|
7181
|
-
"onUpdate:modelValue": _cache[
|
|
7267
|
+
"onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily = $event),
|
|
7182
7268
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseselect,
|
|
7183
7269
|
style: {
|
|
7184
7270
|
"width": "100%"
|
|
@@ -7206,7 +7292,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7206
7292
|
}, {
|
|
7207
7293
|
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, {
|
|
7208
7294
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize,
|
|
7209
|
-
"onUpdate:modelValue": _cache[
|
|
7295
|
+
"onUpdate:modelValue": _cache[32] || (_cache[32] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize = $event),
|
|
7210
7296
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fontsize
|
|
7211
7297
|
}, {
|
|
7212
7298
|
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 => {
|
|
@@ -7236,7 +7322,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7236
7322
|
}, {
|
|
7237
7323
|
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, {
|
|
7238
7324
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color,
|
|
7239
|
-
"onUpdate:modelValue": _cache[
|
|
7325
|
+
"onUpdate:modelValue": _cache[33] || (_cache[33] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color = $event),
|
|
7240
7326
|
"show-alpha": ""
|
|
7241
7327
|
}, null, 8 /* PROPS */, ["modelValue"])])]),
|
|
7242
7328
|
_: 1 /* STABLE */
|
|
@@ -7253,7 +7339,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7253
7339
|
rows: "12",
|
|
7254
7340
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseentercontent,
|
|
7255
7341
|
spellcheck: "false",
|
|
7256
|
-
"onUpdate:modelValue": _cache[
|
|
7342
|
+
"onUpdate:modelValue": _cache[34] || (_cache[34] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue = $event),
|
|
7257
7343
|
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)
|
|
7258
7344
|
}, 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]])]),
|
|
7259
7345
|
_: 1 /* STABLE */
|
|
@@ -7437,7 +7523,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7437
7523
|
circle: "",
|
|
7438
7524
|
icon: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.CircleClose),
|
|
7439
7525
|
title: _ctx.$t('webgl.printclearimg'),
|
|
7440
|
-
onClick: _cache[
|
|
7526
|
+
onClick: _cache[35] || (_cache[35] = $event => handleDeleteCenterPic()),
|
|
7441
7527
|
style: {
|
|
7442
7528
|
"margin-left": "32px"
|
|
7443
7529
|
}
|
|
@@ -7456,7 +7542,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7456
7542
|
}, {
|
|
7457
7543
|
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, {
|
|
7458
7544
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width,
|
|
7459
|
-
"onUpdate:modelValue": _cache[
|
|
7545
|
+
"onUpdate:modelValue": _cache[36] || (_cache[36] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width = $event),
|
|
7460
7546
|
min: 0,
|
|
7461
7547
|
"controls-position": "right",
|
|
7462
7548
|
onChange: _ctx.onChangecenterImg
|
|
@@ -7475,7 +7561,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7475
7561
|
}, {
|
|
7476
7562
|
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, {
|
|
7477
7563
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height,
|
|
7478
|
-
"onUpdate:modelValue": _cache[
|
|
7564
|
+
"onUpdate:modelValue": _cache[37] || (_cache[37] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height = $event),
|
|
7479
7565
|
min: 0,
|
|
7480
7566
|
"controls-position": "right",
|
|
7481
7567
|
onChange: _ctx.onChangecenterImg
|
|
@@ -7491,46 +7577,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7491
7577
|
_: 1 /* STABLE */
|
|
7492
7578
|
})])]),
|
|
7493
7579
|
_: 1 /* STABLE */
|
|
7494
|
-
})], 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_.
|
|
7495
|
-
onClick: Enlarge,
|
|
7496
|
-
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).equalscalezoom,
|
|
7497
|
-
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' : '')
|
|
7498
|
-
}, {
|
|
7499
|
-
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_icon, null, {
|
|
7500
|
-
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.ZoomIn))]),
|
|
7501
|
-
_: 1 /* STABLE */
|
|
7502
|
-
})]),
|
|
7503
|
-
_: 1 /* STABLE */
|
|
7504
|
-
}, 8 /* PROPS */, ["title", "class"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
7505
|
-
onClick: Narrow,
|
|
7506
|
-
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).scaleddown,
|
|
7507
|
-
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isActive) === 2 ? 'clickborder' : '')
|
|
7508
|
-
}, {
|
|
7509
|
-
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_icon, null, {
|
|
7510
|
-
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.ZoomOut))]),
|
|
7511
|
-
_: 1 /* STABLE */
|
|
7512
|
-
})]),
|
|
7513
|
-
_: 1 /* STABLE */
|
|
7514
|
-
}, 8 /* PROPS */, ["title", "class"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
7515
|
-
onClick: MovePrint,
|
|
7516
|
-
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printdrag,
|
|
7517
|
-
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isActive) === 3 ? 'clickborder' : '')
|
|
7518
|
-
}, {
|
|
7519
|
-
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_icon, null, {
|
|
7520
|
-
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.Rank))]),
|
|
7521
|
-
_: 1 /* STABLE */
|
|
7522
|
-
})]),
|
|
7523
|
-
_: 1 /* STABLE */
|
|
7524
|
-
}, 8 /* PROPS */, ["title", "class"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
7525
|
-
onClick: RefreshStatus,
|
|
7526
|
-
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).restore
|
|
7527
|
-
}, {
|
|
7528
|
-
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_icon, null, {
|
|
7529
|
-
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.Refresh))]),
|
|
7530
|
-
_: 1 /* STABLE */
|
|
7531
|
-
})]),
|
|
7532
|
-
_: 1 /* STABLE */
|
|
7533
|
-
}, 8 /* PROPS */, ["title"])])]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
7580
|
+
})], 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_.createCommentVNode)(" <div class=\"show-right-box-btn\">\r\n <div class=\"btn-group\">\r\n <kq-button @click=\"Enlarge\" :title=\"language.equalscalezoom\" :class=\"isActive === 1 ? 'clickborder' : ''\">\r\n <kq-icon><ZoomIn /></kq-icon>\r\n </kq-button>\r\n <kq-button @click=\"Narrow\" :title=\"language.scaleddown\" :class=\"isActive === 2 ? 'clickborder' : ''\">\r\n <kq-icon><ZoomOut /></kq-icon>\r\n </kq-button>\r\n <kq-button @click=\"MovePrint\" :title=\"language.printdrag\" :class=\"isActive === 3 ? 'clickborder' : ''\">\r\n <kq-icon><Rank /></kq-icon>\r\n </kq-button>\r\n <kq-button @click=\"RefreshStatus\" :title=\"language.restore\">\r\n <kq-icon><Refresh /></kq-icon>\r\n </kq-button>\r\n </div>\r\n </div> "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
7534
7581
|
ref_key: "printDiv",
|
|
7535
7582
|
ref: printDiv,
|
|
7536
7583
|
class: "kq3d-client-print-printDiv"
|
|
@@ -7541,7 +7588,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7541
7588
|
class: "kq3d-client-print-mapContainerDiv kq3d-client-print-a4VSize",
|
|
7542
7589
|
onselectstart: "return false",
|
|
7543
7590
|
id: "printMap"
|
|
7544
|
-
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
7591
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_35, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
7545
7592
|
ref_key: "titleRef",
|
|
7546
7593
|
ref: titleRef,
|
|
7547
7594
|
style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)({
|
|
@@ -7560,10 +7607,10 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7560
7607
|
options: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).options,
|
|
7561
7608
|
service: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).service,
|
|
7562
7609
|
scenceInfo: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).scenceInfo,
|
|
7563
|
-
showToolButtons:
|
|
7610
|
+
showToolButtons: false,
|
|
7564
7611
|
defaultShowLayerNames: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).defaultShowLayerNames,
|
|
7565
|
-
|
|
7566
|
-
|
|
7612
|
+
showLogo: false,
|
|
7613
|
+
isInitDrawManager: false,
|
|
7567
7614
|
style: {
|
|
7568
7615
|
"position": "relative"
|
|
7569
7616
|
}
|
|
@@ -7580,13 +7627,13 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7580
7627
|
ref_key: "lengend_ref",
|
|
7581
7628
|
ref: lengend_ref,
|
|
7582
7629
|
class: "kq-legend-box"
|
|
7583
|
-
}, [(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",
|
|
7584
|
-
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",
|
|
7630
|
+
}, [(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_36, _hoisted_38)) : (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 => {
|
|
7631
|
+
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_39, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
|
|
7585
7632
|
src: legend.src,
|
|
7586
7633
|
style: {
|
|
7587
7634
|
"padding-right": "8px"
|
|
7588
7635
|
}
|
|
7589
|
-
}, null, 8 /* PROPS */,
|
|
7636
|
+
}, null, 8 /* PROPS */, _hoisted_40), (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]]);
|
|
7590
7637
|
}), 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 /* HYDRATE_EVENTS */), (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", {
|
|
7591
7638
|
class: "kq3d-client-print-compassDiv",
|
|
7592
7639
|
onMouseover: setdragCursor,
|
|
@@ -7620,7 +7667,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7620
7667
|
}, {
|
|
7621
7668
|
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))]),
|
|
7622
7669
|
_: 1 /* STABLE */
|
|
7623
|
-
}, 8 /* PROPS */, ["title"])], 8 /* PROPS */,
|
|
7670
|
+
}, 8 /* PROPS */, ["title"])], 8 /* PROPS */, _hoisted_42)], 40 /* PROPS, HYDRATE_EVENTS */, _hoisted_41)), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, item.data.isShow]]);
|
|
7624
7671
|
}), 128 /* KEYED_FRAGMENT */)), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("图片"), ((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)(fileList).value, item => {
|
|
7625
7672
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", {
|
|
7626
7673
|
key: item.uid,
|
|
@@ -7632,10 +7679,23 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7632
7679
|
alt: "",
|
|
7633
7680
|
width: item.width,
|
|
7634
7681
|
height: item.height
|
|
7635
|
-
}, null, 8 /* PROPS */,
|
|
7682
|
+
}, null, 8 /* PROPS */, _hoisted_43)], 32 /* HYDRATE_EVENTS */);
|
|
7636
7683
|
}), 128 /* KEYED_FRAGMENT */))]),
|
|
7637
7684
|
_: 1 /* STABLE */
|
|
7638
|
-
}, 8 /* PROPS */, ["options", "service", "scenceInfo", "
|
|
7685
|
+
}, 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, {
|
|
7686
|
+
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, {
|
|
7687
|
+
span: 12
|
|
7688
|
+
}, {
|
|
7689
|
+
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)]])]),
|
|
7690
|
+
_: 1 /* STABLE */
|
|
7691
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
7692
|
+
span: 12
|
|
7693
|
+
}, {
|
|
7694
|
+
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)]])]),
|
|
7695
|
+
_: 1 /* STABLE */
|
|
7696
|
+
})]),
|
|
7697
|
+
_: 1 /* STABLE */
|
|
7698
|
+
})])], 512 /* NEED_PATCH */)]),
|
|
7639
7699
|
_: 1 /* STABLE */
|
|
7640
7700
|
})], 512 /* NEED_PATCH */)], 512 /* NEED_PATCH */);
|
|
7641
7701
|
};
|
|
@@ -8411,7 +8471,9 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
|
|
|
8411
8471
|
});
|
|
8412
8472
|
watchCreateHeaderTemp();
|
|
8413
8473
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
8414
|
-
|
|
8474
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
8475
|
+
watchCreateHeaderTemp();
|
|
8476
|
+
});
|
|
8415
8477
|
});
|
|
8416
8478
|
gis_utils_.utils.getWebMap(props.target, scenceView => {
|
|
8417
8479
|
if (scenceView) {
|
|
@@ -9165,7 +9227,9 @@ const Flightvue_type_script_setup_true_lang_js_default_ = {
|
|
|
9165
9227
|
});
|
|
9166
9228
|
watchCreateHeaderTemp();
|
|
9167
9229
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
9168
|
-
|
|
9230
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
9231
|
+
watchCreateHeaderTemp();
|
|
9232
|
+
});
|
|
9169
9233
|
});
|
|
9170
9234
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
9171
9235
|
if (scenceView) {
|
|
@@ -10215,7 +10279,9 @@ const GPUSpatialQueryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
10215
10279
|
});
|
|
10216
10280
|
watchCreateHeaderTemp();
|
|
10217
10281
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
10218
|
-
|
|
10282
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
10283
|
+
watchCreateHeaderTemp();
|
|
10284
|
+
});
|
|
10219
10285
|
});
|
|
10220
10286
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
10221
10287
|
if (scenceView) {
|
|
@@ -10821,7 +10887,9 @@ const ModelSelectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
10821
10887
|
});
|
|
10822
10888
|
watchCreateHeaderTemp();
|
|
10823
10889
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
10824
|
-
|
|
10890
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
10891
|
+
watchCreateHeaderTemp();
|
|
10892
|
+
});
|
|
10825
10893
|
});
|
|
10826
10894
|
|
|
10827
10895
|
//父组件ScenceView初始化完成后执行
|
|
@@ -11203,7 +11271,9 @@ const ModelFiltervue_type_script_setup_true_lang_js_default_ = {
|
|
|
11203
11271
|
});
|
|
11204
11272
|
watchCreateHeaderTemp();
|
|
11205
11273
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
11206
|
-
|
|
11274
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
11275
|
+
watchCreateHeaderTemp();
|
|
11276
|
+
});
|
|
11207
11277
|
});
|
|
11208
11278
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
11209
11279
|
//父组件ScenceView初始化完成后执行
|
|
@@ -11702,7 +11772,9 @@ const WireframeSketchvue_type_script_setup_true_lang_js_default_ = {
|
|
|
11702
11772
|
});
|
|
11703
11773
|
watchCreateHeaderTemp();
|
|
11704
11774
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
11705
|
-
|
|
11775
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
11776
|
+
watchCreateHeaderTemp();
|
|
11777
|
+
});
|
|
11706
11778
|
});
|
|
11707
11779
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
11708
11780
|
//父组件ScenceView初始化完成后执行
|
|
@@ -12069,7 +12141,9 @@ const LimitHeightAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12069
12141
|
});
|
|
12070
12142
|
watchCreateHeaderTemp();
|
|
12071
12143
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
12072
|
-
|
|
12144
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
12145
|
+
watchCreateHeaderTemp();
|
|
12146
|
+
});
|
|
12073
12147
|
});
|
|
12074
12148
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言类型
|
|
12075
12149
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -12593,7 +12667,9 @@ const TerrainProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12593
12667
|
});
|
|
12594
12668
|
watchCreateHeaderTemp();
|
|
12595
12669
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
12596
|
-
|
|
12670
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
12671
|
+
watchCreateHeaderTemp();
|
|
12672
|
+
});
|
|
12597
12673
|
});
|
|
12598
12674
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
12599
12675
|
//父组件ScenceView初始化完成后执行
|
|
@@ -12916,7 +12992,9 @@ const SceneToHDImagevue_type_script_setup_true_lang_js_default_ = {
|
|
|
12916
12992
|
});
|
|
12917
12993
|
watchCreateHeaderTemp();
|
|
12918
12994
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
12919
|
-
|
|
12995
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
12996
|
+
watchCreateHeaderTemp();
|
|
12997
|
+
});
|
|
12920
12998
|
});
|
|
12921
12999
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
12922
13000
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -13380,7 +13458,7 @@ class SceneAdvancedToImageViewModel {
|
|
|
13380
13458
|
let lat = Cesium.Math.toDegrees(cartographic.latitude);
|
|
13381
13459
|
let lng = Cesium.Math.toDegrees(cartographic.longitude);
|
|
13382
13460
|
let pos = Cesium.Cartesian3.fromDegrees(lng, lat, this._options.height);
|
|
13383
|
-
this._satellitePyramidPrimitive = this._viewer.scene.primitives.add(new
|
|
13461
|
+
this._satellitePyramidPrimitive = this._viewer.scene.primitives.add(new Cesium.Kq3dSatellitePyramidPrimitive(this._viewer, {
|
|
13384
13462
|
position: pos,
|
|
13385
13463
|
angle1: this._options.leftRightAngle,
|
|
13386
13464
|
angle2: this._options.frontAndRearAngle,
|
|
@@ -13718,7 +13796,9 @@ const SceneAdvancedToImagevue_type_script_setup_true_lang_js_default_ = {
|
|
|
13718
13796
|
});
|
|
13719
13797
|
watchCreateHeaderTemp();
|
|
13720
13798
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
13721
|
-
|
|
13799
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
13800
|
+
watchCreateHeaderTemp();
|
|
13801
|
+
});
|
|
13722
13802
|
});
|
|
13723
13803
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
13724
13804
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -14696,7 +14776,9 @@ const ScanEffectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
14696
14776
|
});
|
|
14697
14777
|
watchCreateHeaderTemp();
|
|
14698
14778
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
14699
|
-
|
|
14779
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
14780
|
+
watchCreateHeaderTemp();
|
|
14781
|
+
});
|
|
14700
14782
|
});
|
|
14701
14783
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
14702
14784
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -15403,6 +15485,13 @@ class Heatmap3dViewModel {
|
|
|
15403
15485
|
if (this._options.gradient) this._heatmap.gradient = this._options.gradient;
|
|
15404
15486
|
this._viewer.scene.primitives.add(this._heatmap);
|
|
15405
15487
|
this._heatmap && this._heatmap.setData(heatmapData);
|
|
15488
|
+
if (this._heatmap) {
|
|
15489
|
+
this._heatmap.readyPromise.then(() => {
|
|
15490
|
+
this._viewer.camera.flyTo({
|
|
15491
|
+
destination: this._heatmap._rectangle
|
|
15492
|
+
});
|
|
15493
|
+
});
|
|
15494
|
+
}
|
|
15406
15495
|
}
|
|
15407
15496
|
// 创建二维热力图对象
|
|
15408
15497
|
initHeatmap2d(heatmapData) {
|
|
@@ -15427,6 +15516,9 @@ class Heatmap3dViewModel {
|
|
|
15427
15516
|
show: this._options.heatmapType == "2D" ? this._options.isShow : false
|
|
15428
15517
|
});
|
|
15429
15518
|
this._viewer.imageryLayers.add(this._heatmap2dCountLayer);
|
|
15519
|
+
this._viewer.camera.flyTo({
|
|
15520
|
+
destination: Cesium.Rectangle.fromDegrees(extent[0], extent[1], extent[2], extent[3])
|
|
15521
|
+
});
|
|
15430
15522
|
}
|
|
15431
15523
|
// 切换二维数据
|
|
15432
15524
|
changeHeatmap2d() {
|
|
@@ -16000,7 +16092,9 @@ const Heatmap3dvue_type_script_setup_true_lang_js_default_ = {
|
|
|
16000
16092
|
});
|
|
16001
16093
|
watchCreateHeaderTemp();
|
|
16002
16094
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
16003
|
-
|
|
16095
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
16096
|
+
watchCreateHeaderTemp();
|
|
16097
|
+
});
|
|
16004
16098
|
});
|
|
16005
16099
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
16006
16100
|
//父组 件ScenceView初始化完成后执行
|
|
@@ -16266,17 +16360,16 @@ const Heatmap3dvue_type_script_setup_true_lang_js_default_ = {
|
|
|
16266
16360
|
ref_key: "headerTempRef",
|
|
16267
16361
|
ref: headerTempRef
|
|
16268
16362
|
}, 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, {
|
|
16269
|
-
gutter: 20,
|
|
16270
16363
|
class: "rowClass"
|
|
16271
16364
|
}, {
|
|
16272
16365
|
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, {
|
|
16273
|
-
span:
|
|
16366
|
+
span: 7,
|
|
16274
16367
|
class: "colClass"
|
|
16275
16368
|
}, {
|
|
16276
16369
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", Heatmap3dvue_type_script_setup_true_lang_js_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 */)]),
|
|
16277
16370
|
_: 1 /* STABLE */
|
|
16278
16371
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
16279
|
-
span:
|
|
16372
|
+
span: 17
|
|
16280
16373
|
}, {
|
|
16281
16374
|
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, {
|
|
16282
16375
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).dataPath,
|
|
@@ -16307,17 +16400,16 @@ const Heatmap3dvue_type_script_setup_true_lang_js_default_ = {
|
|
|
16307
16400
|
})]),
|
|
16308
16401
|
_: 1 /* STABLE */
|
|
16309
16402
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
16310
|
-
gutter: 20,
|
|
16311
16403
|
class: "rowClass"
|
|
16312
16404
|
}, {
|
|
16313
16405
|
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, {
|
|
16314
|
-
span:
|
|
16406
|
+
span: 7,
|
|
16315
16407
|
class: "colClass"
|
|
16316
16408
|
}, {
|
|
16317
16409
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", Heatmap3dvue_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).heatmapType), 1 /* TEXT */)]),
|
|
16318
16410
|
_: 1 /* STABLE */
|
|
16319
16411
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
16320
|
-
span:
|
|
16412
|
+
span: 17
|
|
16321
16413
|
}, {
|
|
16322
16414
|
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, {
|
|
16323
16415
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).heatmapType,
|
|
@@ -16327,7 +16419,7 @@ const Heatmap3dvue_type_script_setup_true_lang_js_default_ = {
|
|
|
16327
16419
|
label: "3D",
|
|
16328
16420
|
onChange: _cache[2] || (_cache[2] = $event => paramsChanged('heatmapType'))
|
|
16329
16421
|
}, {
|
|
16330
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(
|
|
16422
|
+
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 */)]),
|
|
16331
16423
|
_: 1 /* STABLE */
|
|
16332
16424
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
|
|
16333
16425
|
label: "2D",
|
|
@@ -16575,7 +16667,7 @@ const Heatmap3dvue_type_script_setup_true_lang_js_default_ = {
|
|
|
16575
16667
|
_: 1 /* STABLE */
|
|
16576
16668
|
}), (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, {
|
|
16577
16669
|
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, {
|
|
16578
|
-
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).height
|
|
16670
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).height + '(m)'
|
|
16579
16671
|
}, {
|
|
16580
16672
|
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, {
|
|
16581
16673
|
style: {
|
|
@@ -17132,7 +17224,9 @@ const ModelExcavatevue_type_script_setup_true_lang_js_default_ = {
|
|
|
17132
17224
|
});
|
|
17133
17225
|
watchCreateHeaderTemp();
|
|
17134
17226
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
17135
|
-
|
|
17227
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
17228
|
+
watchCreateHeaderTemp();
|
|
17229
|
+
});
|
|
17136
17230
|
});
|
|
17137
17231
|
|
|
17138
17232
|
//父组件ScenceView初始化完成后执行
|
|
@@ -17554,7 +17648,9 @@ const ModelFlatvue_type_script_setup_true_lang_js_default_ = {
|
|
|
17554
17648
|
});
|
|
17555
17649
|
watchCreateHeaderTemp();
|
|
17556
17650
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
17557
|
-
|
|
17651
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
17652
|
+
watchCreateHeaderTemp();
|
|
17653
|
+
});
|
|
17558
17654
|
});
|
|
17559
17655
|
|
|
17560
17656
|
//父组件ScenceView初始化完成后执行
|
|
@@ -18108,7 +18204,9 @@ const SightlineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
18108
18204
|
});
|
|
18109
18205
|
watchCreateHeaderTemp();
|
|
18110
18206
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
18111
|
-
|
|
18207
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
18208
|
+
watchCreateHeaderTemp();
|
|
18209
|
+
});
|
|
18112
18210
|
});
|
|
18113
18211
|
|
|
18114
18212
|
//父组件ScenceView初始化完成后执行
|
|
@@ -18556,7 +18654,9 @@ const ViewshedAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
18556
18654
|
});
|
|
18557
18655
|
watchCreateHeaderTemp();
|
|
18558
18656
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
18559
|
-
|
|
18657
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
18658
|
+
watchCreateHeaderTemp();
|
|
18659
|
+
});
|
|
18560
18660
|
});
|
|
18561
18661
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言类型
|
|
18562
18662
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -19245,7 +19345,9 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
19245
19345
|
});
|
|
19246
19346
|
watchCreateHeaderTemp();
|
|
19247
19347
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
19248
|
-
|
|
19348
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
19349
|
+
watchCreateHeaderTemp();
|
|
19350
|
+
});
|
|
19249
19351
|
});
|
|
19250
19352
|
time.value = [formItem.startTime, formItem.endTime];
|
|
19251
19353
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -20141,7 +20243,9 @@ const ModelProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
20141
20243
|
});
|
|
20142
20244
|
watchCreateHeaderTemp();
|
|
20143
20245
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
20144
|
-
|
|
20246
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
20247
|
+
watchCreateHeaderTemp();
|
|
20248
|
+
});
|
|
20145
20249
|
});
|
|
20146
20250
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
20147
20251
|
if (scenceView) {
|
|
@@ -20864,7 +20968,9 @@ const SkylineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
20864
20968
|
});
|
|
20865
20969
|
watchCreateHeaderTemp();
|
|
20866
20970
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
20867
|
-
|
|
20971
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
20972
|
+
watchCreateHeaderTemp();
|
|
20973
|
+
});
|
|
20868
20974
|
});
|
|
20869
20975
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
20870
20976
|
if (scenceView) {
|
|
@@ -21519,7 +21625,9 @@ const TerrainOperationvue_type_script_setup_true_lang_js_default_ = {
|
|
|
21519
21625
|
});
|
|
21520
21626
|
watchCreateHeaderTemp();
|
|
21521
21627
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
21522
|
-
|
|
21628
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
21629
|
+
watchCreateHeaderTemp();
|
|
21630
|
+
});
|
|
21523
21631
|
});
|
|
21524
21632
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
21525
21633
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -21984,7 +22092,9 @@ const ExcavateFillAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
21984
22092
|
});
|
|
21985
22093
|
watchCreateHeaderTemp();
|
|
21986
22094
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
21987
|
-
|
|
22095
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
22096
|
+
watchCreateHeaderTemp();
|
|
22097
|
+
});
|
|
21988
22098
|
});
|
|
21989
22099
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
21990
22100
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -22621,7 +22731,9 @@ const FloodAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
22621
22731
|
});
|
|
22622
22732
|
watchCreateHeaderTemp();
|
|
22623
22733
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
22624
|
-
|
|
22734
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
22735
|
+
watchCreateHeaderTemp();
|
|
22736
|
+
});
|
|
22625
22737
|
});
|
|
22626
22738
|
gis_utils_.utils.getWebMap(props.target, scenceView => {
|
|
22627
22739
|
if (scenceView) {
|
|
@@ -23433,7 +23545,9 @@ const SlopeAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
23433
23545
|
});
|
|
23434
23546
|
watchCreateHeaderTemp();
|
|
23435
23547
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
23436
|
-
|
|
23548
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
23549
|
+
watchCreateHeaderTemp();
|
|
23550
|
+
});
|
|
23437
23551
|
});
|
|
23438
23552
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
23439
23553
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -24110,7 +24224,9 @@ const AspectAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24110
24224
|
});
|
|
24111
24225
|
watchCreateHeaderTemp();
|
|
24112
24226
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
24113
|
-
|
|
24227
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
24228
|
+
watchCreateHeaderTemp();
|
|
24229
|
+
});
|
|
24114
24230
|
});
|
|
24115
24231
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
24116
24232
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -24783,7 +24899,9 @@ const SlopeAspectAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24783
24899
|
});
|
|
24784
24900
|
watchCreateHeaderTemp();
|
|
24785
24901
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
24786
|
-
|
|
24902
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
24903
|
+
watchCreateHeaderTemp();
|
|
24904
|
+
});
|
|
24787
24905
|
});
|
|
24788
24906
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
24789
24907
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -25919,7 +26037,9 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25919
26037
|
});
|
|
25920
26038
|
watchCreateHeaderTemp();
|
|
25921
26039
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
25922
|
-
|
|
26040
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
26041
|
+
watchCreateHeaderTemp();
|
|
26042
|
+
});
|
|
25923
26043
|
});
|
|
25924
26044
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
25925
26045
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -27693,7 +27813,9 @@ const BoxClipvue_type_script_setup_true_lang_js_default_ = {
|
|
|
27693
27813
|
});
|
|
27694
27814
|
watchCreateHeaderTemp();
|
|
27695
27815
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
27696
|
-
|
|
27816
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
27817
|
+
watchCreateHeaderTemp();
|
|
27818
|
+
});
|
|
27697
27819
|
});
|
|
27698
27820
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
27699
27821
|
//父组 件ScenceView初始化完成后执行
|
|
@@ -28548,7 +28670,9 @@ const PlaneClipvue_type_script_setup_true_lang_js_default_ = {
|
|
|
28548
28670
|
});
|
|
28549
28671
|
watchCreateHeaderTemp();
|
|
28550
28672
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
28551
|
-
|
|
28673
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
28674
|
+
watchCreateHeaderTemp();
|
|
28675
|
+
});
|
|
28552
28676
|
});
|
|
28553
28677
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
28554
28678
|
//父组 件ScenceView初始化完成后执行
|
|
@@ -30448,7 +30572,7 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
30448
30572
|
description: language.value.imagertyCZMLdescription
|
|
30449
30573
|
}*/];
|
|
30450
30574
|
if (props.hideServiceTypes) {
|
|
30451
|
-
let indexList = props.hideServiceTypes.split(
|
|
30575
|
+
let indexList = props.hideServiceTypes.split(",");
|
|
30452
30576
|
for (let i = types.length - 1; i >= 0; i--) {
|
|
30453
30577
|
if (indexList.includes(i.toString())) {
|
|
30454
30578
|
types.splice(i, 1);
|
|
@@ -30464,7 +30588,9 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
30464
30588
|
});
|
|
30465
30589
|
watchCreateHeaderTemp();
|
|
30466
30590
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
30467
|
-
|
|
30591
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
30592
|
+
watchCreateHeaderTemp();
|
|
30593
|
+
});
|
|
30468
30594
|
});
|
|
30469
30595
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
30470
30596
|
if (scenceView) {
|
|
@@ -31081,7 +31207,9 @@ const ParticleEffectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
31081
31207
|
});
|
|
31082
31208
|
watchCreateHeaderTemp();
|
|
31083
31209
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
31084
|
-
|
|
31210
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
31211
|
+
watchCreateHeaderTemp();
|
|
31212
|
+
});
|
|
31085
31213
|
});
|
|
31086
31214
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
31087
31215
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -31890,7 +32018,9 @@ const WeatherEffectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
31890
32018
|
});
|
|
31891
32019
|
watchCreateHeaderTemp();
|
|
31892
32020
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
31893
|
-
|
|
32021
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
32022
|
+
watchCreateHeaderTemp();
|
|
32023
|
+
});
|
|
31894
32024
|
});
|
|
31895
32025
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
31896
32026
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -32999,7 +33129,9 @@ const Screenshotvue_type_script_setup_true_lang_js_default_ = {
|
|
|
32999
33129
|
});
|
|
33000
33130
|
watchCreateHeaderTemp();
|
|
33001
33131
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
33002
|
-
|
|
33132
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
33133
|
+
watchCreateHeaderTemp();
|
|
33134
|
+
});
|
|
33003
33135
|
});
|
|
33004
33136
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
33005
33137
|
if (scenceView) {
|
|
@@ -33668,7 +33800,9 @@ const Rollervue_type_script_setup_true_lang_js_default_ = {
|
|
|
33668
33800
|
});
|
|
33669
33801
|
watchCreateHeaderTemp();
|
|
33670
33802
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
33671
|
-
|
|
33803
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
33804
|
+
watchCreateHeaderTemp();
|
|
33805
|
+
});
|
|
33672
33806
|
});
|
|
33673
33807
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
33674
33808
|
if (scenceView) {
|
|
@@ -34537,7 +34671,9 @@ const VideoProjectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
34537
34671
|
});
|
|
34538
34672
|
watchCreateHeaderTemp();
|
|
34539
34673
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
34540
|
-
|
|
34674
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
34675
|
+
watchCreateHeaderTemp();
|
|
34676
|
+
});
|
|
34541
34677
|
});
|
|
34542
34678
|
|
|
34543
34679
|
//父组 件ScenceView初始化完成后执行
|
|
@@ -35548,7 +35684,9 @@ const VideoFusionvue_type_script_setup_true_lang_js_default_ = {
|
|
|
35548
35684
|
});
|
|
35549
35685
|
watchCreateHeaderTemp();
|
|
35550
35686
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
35551
|
-
|
|
35687
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
35688
|
+
watchCreateHeaderTemp();
|
|
35689
|
+
});
|
|
35552
35690
|
});
|
|
35553
35691
|
|
|
35554
35692
|
//父组 件ScenceView初始化完成后执行
|
|
@@ -36776,7 +36914,9 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
36776
36914
|
});
|
|
36777
36915
|
watchCreateHeaderTemp();
|
|
36778
36916
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
36779
|
-
|
|
36917
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
36918
|
+
watchCreateHeaderTemp();
|
|
36919
|
+
});
|
|
36780
36920
|
});
|
|
36781
36921
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
36782
36922
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -37765,23 +37905,23 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
37765
37905
|
}));
|
|
37766
37906
|
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=script&setup=true&lang=js
|
|
37767
37907
|
|
|
37768
|
-
// EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=
|
|
37769
|
-
var
|
|
37770
|
-
;// CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=
|
|
37908
|
+
// EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=62fb637b&lang=scss
|
|
37909
|
+
var SceneSetvue_type_style_index_0_id_62fb637b_lang_scss = __webpack_require__(188);
|
|
37910
|
+
;// CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=62fb637b&lang=scss
|
|
37771
37911
|
|
|
37772
37912
|
|
|
37773
37913
|
|
|
37774
|
-
var
|
|
37914
|
+
var SceneSetvue_type_style_index_0_id_62fb637b_lang_scss_options = {};
|
|
37775
37915
|
|
|
37776
|
-
|
|
37777
|
-
|
|
37916
|
+
SceneSetvue_type_style_index_0_id_62fb637b_lang_scss_options.insert = "head";
|
|
37917
|
+
SceneSetvue_type_style_index_0_id_62fb637b_lang_scss_options.singleton = false;
|
|
37778
37918
|
|
|
37779
|
-
var
|
|
37919
|
+
var SceneSetvue_type_style_index_0_id_62fb637b_lang_scss_update = injectStylesIntoStyleTag_default()(SceneSetvue_type_style_index_0_id_62fb637b_lang_scss/* default */.Z, SceneSetvue_type_style_index_0_id_62fb637b_lang_scss_options);
|
|
37780
37920
|
|
|
37781
37921
|
|
|
37782
37922
|
|
|
37783
|
-
/* harmony default export */ var
|
|
37784
|
-
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=
|
|
37923
|
+
/* harmony default export */ var sceneset_SceneSetvue_type_style_index_0_id_62fb637b_lang_scss = (SceneSetvue_type_style_index_0_id_62fb637b_lang_scss/* default.locals */.Z.locals || {});
|
|
37924
|
+
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=62fb637b&lang=scss
|
|
37785
37925
|
|
|
37786
37926
|
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue
|
|
37787
37927
|
|
|
@@ -38133,7 +38273,9 @@ const Lightvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38133
38273
|
});
|
|
38134
38274
|
watchCreateHeaderTemp();
|
|
38135
38275
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
38136
|
-
|
|
38276
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
38277
|
+
watchCreateHeaderTemp();
|
|
38278
|
+
});
|
|
38137
38279
|
});
|
|
38138
38280
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
38139
38281
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -38776,7 +38918,9 @@ const GeologicalBodyAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38776
38918
|
});
|
|
38777
38919
|
watchCreateHeaderTemp();
|
|
38778
38920
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
38779
|
-
|
|
38921
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
38922
|
+
watchCreateHeaderTemp();
|
|
38923
|
+
});
|
|
38780
38924
|
});
|
|
38781
38925
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
38782
38926
|
//父组 件ScenceView初始化完成后执行
|
|
@@ -40516,10 +40660,9 @@ elink.href=_url;elink.setAttribute("download","shapefile.zip");elink.style.displ
|
|
|
40516
40660
|
* @param coordinates
|
|
40517
40661
|
*/function removeCPointFromCoordinates(coordinates){for(let i=0;i<coordinates.length;i++){let points=coordinates[i];for(let m=points.length-2;m>=0;m--){let p=points[m];let q=points[m+1];if(p[0]===q[0]&&p[1]===q[1]){points.splice(m+1,1);}}}}/**
|
|
40518
40662
|
* 导出txt
|
|
40519
|
-
* @param {string} dataUrl //通用geometry服务
|
|
40520
40663
|
* @param {string} outPrj //导出的坐标系
|
|
40521
40664
|
* @param {object} features //要导出的坐标
|
|
40522
|
-
*/function exportTXT(
|
|
40665
|
+
*/function exportTXT(outPrj,features){if(["4490","4326","4610"].includes(outPrj)){let txtBodys=createTxtBody(features);let drawTTitle="[属性描述] \r\n格式版本号=1.0 \r\n数据生产单位=国土资源部 \r\n数据产生日期=[datatime] \r\n坐标系=墨卡托 \r\n投影类型=高斯克吕格 \r\n计量单位=米 \r\n[地块坐标] \r\n";let date=new Date();let time=date.getFullYear()+"-"+(date.getMonth()+1)+"-"+date.getDate();drawTTitle=drawTTitle.replace("[datatime]",time);// 设置生成日期
|
|
40523
40666
|
let evalue=drawTTitle+txtBodys;saveTXT(evalue,"","地块坐标信息.txt");}else{let dataFeatures=[];for(let d=0;d<features.length;d++){let f=features[d].geometry;projToAssign(f,outPrj,"4326");let feature={type:"Feature",geometry:f};dataFeatures.push(feature);}let txtBodys=createTxtBody(dataFeatures);let drawTTitle="[属性描述] \r\n格式版本号=1.0 \r\n数据生产单位=国土资源部 \r\n数据产生日期=[datatime] \r\n坐标系=墨卡托 \r\n投影类型=高斯克吕格 \r\n计量单位=米 \r\n[地块坐标] \r\n";let date=new Date();let time=date.getFullYear()+"-"+(date.getMonth()+1)+"-"+date.getDate();drawTTitle=drawTTitle.replace("[datatime]",time);// 设置生成日期
|
|
40524
40667
|
let evalue=drawTTitle+txtBodys;saveTXT(evalue,"","地块坐标信息.txt");}}// 导出txt方法--总方法
|
|
40525
40668
|
function createTxtBody(features){let txtBodys="";for(let k in features){let geometry=features[k]["geometry"];let geoType=geometry["type"];let coordinates=geometry["coordinates"];// let RKZQBM = features[k]['properties']['XZQDM'] === undefined ? '' : features[k]['properties']['XZQDM'];
|
|
@@ -40939,7 +41082,7 @@ let getTooBox = ({
|
|
|
40939
41082
|
}, {
|
|
40940
41083
|
label: webgl.floodModel + webgl.floodAnalysis1,
|
|
40941
41084
|
icon: client_icons_vue_namespaceObject.IconFloodAnalysis,
|
|
40942
|
-
value: "
|
|
41085
|
+
value: "Kq3dModelFloodAnalysis"
|
|
40943
41086
|
}, {
|
|
40944
41087
|
label: webgl.geologyBodyAnalysis,
|
|
40945
41088
|
icon: client_icons_vue_namespaceObject.IconGeologicalAnalysis,
|
|
@@ -41136,7 +41279,7 @@ const AppToolBoxvue_type_script_setup_true_lang_js_default_ = {
|
|
|
41136
41279
|
case "Kq3dLimitHeightAnalysis":
|
|
41137
41280
|
openBaseWindow(client3d_webgl_vue_.Kq3dLimitHeightAnalysis, language.webgl.limitHeightAnalysis, client_icons_vue_namespaceObject.IconHeightLimitAnalysis);
|
|
41138
41281
|
break;
|
|
41139
|
-
case "
|
|
41282
|
+
case "Kq3dModelFloodAnalysis":
|
|
41140
41283
|
openBaseWindow(client3d_webgl_vue_.Kq3dFloodAnalysis, language.webgl.floodModel + language.webgl.floodAnalysis1, client_icons_vue_namespaceObject.IconFloodAnalysis, {
|
|
41141
41284
|
isShowMode: false,
|
|
41142
41285
|
settingParams: {
|
|
@@ -41319,23 +41462,23 @@ const AppToolBoxvue_type_script_setup_true_lang_js_default_ = {
|
|
|
41319
41462
|
}));
|
|
41320
41463
|
;// CONCATENATED MODULE: ./src/webgl/sceneapp/components/AppToolBox.vue?vue&type=script&setup=true&lang=js
|
|
41321
41464
|
|
|
41322
|
-
// EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneapp/components/AppToolBox.vue?vue&type=style&index=0&id=
|
|
41323
|
-
var
|
|
41324
|
-
;// CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneapp/components/AppToolBox.vue?vue&type=style&index=0&id=
|
|
41465
|
+
// EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneapp/components/AppToolBox.vue?vue&type=style&index=0&id=7ea2a24f&lang=scss
|
|
41466
|
+
var AppToolBoxvue_type_style_index_0_id_7ea2a24f_lang_scss = __webpack_require__(8);
|
|
41467
|
+
;// CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneapp/components/AppToolBox.vue?vue&type=style&index=0&id=7ea2a24f&lang=scss
|
|
41325
41468
|
|
|
41326
41469
|
|
|
41327
41470
|
|
|
41328
|
-
var
|
|
41471
|
+
var AppToolBoxvue_type_style_index_0_id_7ea2a24f_lang_scss_options = {};
|
|
41329
41472
|
|
|
41330
|
-
|
|
41331
|
-
|
|
41473
|
+
AppToolBoxvue_type_style_index_0_id_7ea2a24f_lang_scss_options.insert = "head";
|
|
41474
|
+
AppToolBoxvue_type_style_index_0_id_7ea2a24f_lang_scss_options.singleton = false;
|
|
41332
41475
|
|
|
41333
|
-
var
|
|
41476
|
+
var AppToolBoxvue_type_style_index_0_id_7ea2a24f_lang_scss_update = injectStylesIntoStyleTag_default()(AppToolBoxvue_type_style_index_0_id_7ea2a24f_lang_scss/* default */.Z, AppToolBoxvue_type_style_index_0_id_7ea2a24f_lang_scss_options);
|
|
41334
41477
|
|
|
41335
41478
|
|
|
41336
41479
|
|
|
41337
|
-
/* harmony default export */ var
|
|
41338
|
-
;// CONCATENATED MODULE: ./src/webgl/sceneapp/components/AppToolBox.vue?vue&type=style&index=0&id=
|
|
41480
|
+
/* harmony default export */ var components_AppToolBoxvue_type_style_index_0_id_7ea2a24f_lang_scss = (AppToolBoxvue_type_style_index_0_id_7ea2a24f_lang_scss/* default.locals */.Z.locals || {});
|
|
41481
|
+
;// CONCATENATED MODULE: ./src/webgl/sceneapp/components/AppToolBox.vue?vue&type=style&index=0&id=7ea2a24f&lang=scss
|
|
41339
41482
|
|
|
41340
41483
|
;// CONCATENATED MODULE: ./src/webgl/sceneapp/components/AppToolBox.vue
|
|
41341
41484
|
|
|
@@ -41657,8 +41800,8 @@ const SceneAppvue_type_script_setup_true_lang_js_default_ = {
|
|
|
41657
41800
|
// 工具按钮
|
|
41658
41801
|
let components = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([]);
|
|
41659
41802
|
let components_default = ["kqlayertree", "kqbookmark", "kqlabel"];
|
|
41660
|
-
let
|
|
41661
|
-
component: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.markRaw)(
|
|
41803
|
+
let compCollection3d = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)([{
|
|
41804
|
+
component: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.markRaw)(Measure),
|
|
41662
41805
|
props: {
|
|
41663
41806
|
showShadow: true,
|
|
41664
41807
|
showHeaderTemp: true,
|
|
@@ -41920,7 +42063,6 @@ const SceneAppvue_type_script_setup_true_lang_js_default_ = {
|
|
|
41920
42063
|
}
|
|
41921
42064
|
return geojsonStyle;
|
|
41922
42065
|
}
|
|
41923
|
-
|
|
41924
42066
|
// geojson数据条件过滤后是否显示
|
|
41925
42067
|
const isGeojsonFilterShow = (properties, filters) => {
|
|
41926
42068
|
if (filters.length === 1) return true;
|
|
@@ -42111,9 +42253,9 @@ const SceneAppvue_type_script_setup_true_lang_js_default_ = {
|
|
|
42111
42253
|
components: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(components)
|
|
42112
42254
|
}, null, 8 /* PROPS */, ["components"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_common_vue_.KqToolCollection), {
|
|
42113
42255
|
class: "map-measure",
|
|
42114
|
-
components: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(
|
|
42256
|
+
components: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(compCollection3d),
|
|
42115
42257
|
position: {
|
|
42116
|
-
bottom:
|
|
42258
|
+
bottom: 170,
|
|
42117
42259
|
right: 16
|
|
42118
42260
|
}
|
|
42119
42261
|
}, null, 8 /* PROPS */, ["components"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(AppToolBar), {
|