@kq_npm/client3d_webgl_vue 4.0.4-beta → 4.0.6-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/adddata/index.js +43 -180
- package/aspectanalysis/index.js +23 -25
- package/baseterraingallery/index.js +7 -8
- package/boxclip/index.js +23 -25
- package/clientPrint/index.js +4 -6
- package/comparemap/index.js +51 -22
- package/compass/index.js +4 -4
- package/excavatefillanalysis/index.js +23 -25
- package/fixedzoomin/index.js +4 -4
- package/fixedzoomout/index.js +4 -4
- package/flight/index.js +25 -27
- package/floodanalysis/index.js +23 -27
- package/geologicalbodyanalysis/index.js +900 -0
- package/geologicalbodyanalysis/style/geologicalbodyanalysis.css +1 -0
- package/geologicalbodyanalysis/style/index.js +3 -0
- package/gpuspatialquery/index.js +25 -25
- package/hawkeye/index.js +7 -8
- package/headertemp/index.js +4 -5
- package/index.js +20970 -14727
- package/isolineanalysis/index.js +22 -24
- package/light/index.js +1067 -0
- package/light/style/index.js +3 -0
- package/light/style/light.css +1 -0
- package/limitheightanalysis/index.js +751 -0
- package/limitheightanalysis/style/index.js +3 -0
- package/limitheightanalysis/style/limitheightanalysis.css +1 -0
- package/measure/index.js +46 -38
- package/modelFlat/index.js +483 -0
- package/modelFlat/style/index.js +3 -0
- package/modelFlat/style/modelFlat.css +1 -0
- package/modelfilter/index.js +297 -337
- package/modelfilter/style/modelfilter.css +1 -1
- package/modelprofileanalysis/index.js +7 -8
- package/modelselect/index.js +20 -157
- package/package.json +1 -1
- package/particleeffect/index.js +6 -142
- package/planeclip/index.js +23 -25
- package/resetview/index.js +4 -4
- package/roller/index.js +7 -8
- package/scaneffect/index.js +1730 -0
- package/scaneffect/style/index.js +3 -0
- package/scaneffect/style/scaneffect.css +1 -0
- package/scenceview/index.js +13751 -7346
- package/sceneset/index.js +2097 -0
- package/sceneset/style/index.js +3 -0
- package/sceneset/style/sceneset.css +1 -0
- package/screenshot/index.js +7 -8
- package/shadowanalysis/index.js +20 -158
- package/sightlineanalysis/index.js +26 -19
- package/sightlineanalysis/style/divpoint.css +1 -1
- package/skylineanalysis/index.js +23 -25
- package/slopeanalysis/index.js +22 -24
- package/statusbar/index.js +4 -4
- package/style.css +1 -1
- package/terrainoperation/index.js +20 -157
- package/terrainprofileanalysis/index.js +620 -0
- package/terrainprofileanalysis/style/index.js +3 -0
- package/terrainprofileanalysis/style/terrainprofileanalysis.css +1 -0
- package/underground/index.js +7 -8
- package/videofusion/index.js +23 -35
- package/videoproject/index.js +23 -35
- package/viewshedanalysis/index.js +4 -5
- package/weathereffect/index.js +6 -142
- package/wireframesketch/index.js +521 -0
- package/wireframesketch/style/index.js +3 -0
- package/wireframesketch/style/wireframesketch.css +1 -0
package/comparemap/index.js
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
-
/***/
|
|
5
|
+
/***/ 6938:
|
|
6
6
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7
7
|
|
|
8
8
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
9
9
|
/* harmony export */ "Z": function() { return /* binding */ CompareMapViewModel; }
|
|
10
10
|
/* harmony export */ });
|
|
11
11
|
/* harmony import */ var _Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8270);
|
|
12
|
-
//多窗口逻辑类
|
|
13
12
|
|
|
13
|
+
//多窗口逻辑类
|
|
14
14
|
class CompareMapViewModel {
|
|
15
15
|
// 三维视图对象
|
|
16
16
|
//三维viewer对象
|
|
@@ -24,7 +24,7 @@ class CompareMapViewModel {
|
|
|
24
24
|
} //切换窗口模式
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
changeMode(mode) {
|
|
27
|
+
changeMode(mode, selectAll) {
|
|
28
28
|
let viewMode = Cesium.SplitViewMode.NONE;
|
|
29
29
|
|
|
30
30
|
switch (mode) {
|
|
@@ -53,6 +53,25 @@ class CompareMapViewModel {
|
|
|
53
53
|
break;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
+
if (!selectAll) {
|
|
57
|
+
// 默认全部不勾选
|
|
58
|
+
let checkedLayerkeys = this._scenceView._layerManager.getLayerCheckedListKey();
|
|
59
|
+
|
|
60
|
+
for (let i = 0; i < checkedLayerkeys.length; i++) {
|
|
61
|
+
let layer = this._scenceView._layerManager.getLayerByGuid(checkedLayerkeys[i]);
|
|
62
|
+
|
|
63
|
+
let type = this._scenceView._layerManager.getLayerTypeByGuid(checkedLayerkeys[i]);
|
|
64
|
+
|
|
65
|
+
layer.showInViews = [];
|
|
66
|
+
|
|
67
|
+
if (type == 'datasource') {
|
|
68
|
+
layer.entities.values.forEach(entity => {
|
|
69
|
+
entity.showInViews = [];
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
56
75
|
this._viewer.scene.splitViewMode = viewMode;
|
|
57
76
|
} //重置窗口模式
|
|
58
77
|
|
|
@@ -263,13 +282,12 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
263
282
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
264
283
|
var client_icons_vue_ = __webpack_require__(348);
|
|
265
284
|
// EXTERNAL MODULE: ./src/webgl/comparemap/CompareMapViewModel.js
|
|
266
|
-
var CompareMapViewModel = __webpack_require__(
|
|
285
|
+
var CompareMapViewModel = __webpack_require__(6938);
|
|
267
286
|
// EXTERNAL MODULE: external "core-js/modules/es.array.includes.js"
|
|
268
287
|
var es_array_includes_js_ = __webpack_require__(3600);
|
|
269
288
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
270
289
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
271
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js
|
|
272
|
-
|
|
290
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/comparemap/CompareMapTree.vue?vue&type=script&setup=true&lang=js
|
|
273
291
|
|
|
274
292
|
|
|
275
293
|
const _hoisted_1 = {
|
|
@@ -286,13 +304,15 @@ const __default__ = {
|
|
|
286
304
|
index: Number,
|
|
287
305
|
setLayerState: {
|
|
288
306
|
type: Function
|
|
307
|
+
},
|
|
308
|
+
defaultSelectAll: {
|
|
309
|
+
type: Boolean,
|
|
310
|
+
default: true
|
|
289
311
|
}
|
|
290
312
|
},
|
|
291
313
|
|
|
292
314
|
setup(__props) {
|
|
293
315
|
const props = __props;
|
|
294
|
-
let layerTreeStyle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(); // 图层树选择框样式
|
|
295
|
-
|
|
296
316
|
let selectedLayers = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([]); // 图层树选中值
|
|
297
317
|
|
|
298
318
|
let layerTreeData = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([]); // 图层树选项数据
|
|
@@ -300,7 +320,6 @@ const __default__ = {
|
|
|
300
320
|
let preCheckedKeys = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([]); // 记录上次图层树选中值
|
|
301
321
|
|
|
302
322
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({});
|
|
303
|
-
let viewModel = null;
|
|
304
323
|
/**
|
|
305
324
|
* 勾选图层逻辑
|
|
306
325
|
*/
|
|
@@ -338,8 +357,11 @@ const __default__ = {
|
|
|
338
357
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
339
358
|
if (scenceView) {
|
|
340
359
|
layerTreeData.value = gis_utils_.mapLayerUtils.getLayerCheckedList();
|
|
341
|
-
|
|
342
|
-
|
|
360
|
+
|
|
361
|
+
if (props.defaultSelectAll) {
|
|
362
|
+
selectedLayers.value = gis_utils_.mapLayerUtils.getLayerCheckedListKey();
|
|
363
|
+
preCheckedKeys.value = selectedLayers.value;
|
|
364
|
+
}
|
|
343
365
|
}
|
|
344
366
|
});
|
|
345
367
|
});
|
|
@@ -393,7 +415,7 @@ const __default__ = {
|
|
|
393
415
|
const __exports__ = CompareMapTreevue_type_script_setup_true_lang_js;
|
|
394
416
|
|
|
395
417
|
/* harmony default export */ var CompareMapTree = (__exports__);
|
|
396
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js
|
|
418
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/comparemap/CompareMap.vue?vue&type=script&setup=true&lang=js
|
|
397
419
|
|
|
398
420
|
const CompareMapvue_type_script_setup_true_lang_js_hoisted_1 = {
|
|
399
421
|
class: "kq3d-compare-map"
|
|
@@ -416,15 +438,18 @@ const CompareMapvue_type_script_setup_true_lang_js_default_ = {
|
|
|
416
438
|
offsetTop: {
|
|
417
439
|
type: String,
|
|
418
440
|
default: "16px"
|
|
441
|
+
},
|
|
442
|
+
defaultSelectAll: {
|
|
443
|
+
type: Boolean,
|
|
444
|
+
default: true
|
|
419
445
|
}
|
|
420
446
|
},
|
|
421
447
|
emits: ["back"],
|
|
422
448
|
|
|
423
|
-
setup(__props,
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
} = _ref;
|
|
449
|
+
setup(__props, {
|
|
450
|
+
expose,
|
|
451
|
+
emit
|
|
452
|
+
}) {
|
|
428
453
|
const props = __props;
|
|
429
454
|
let offsetTop = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("auto");
|
|
430
455
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({});
|
|
@@ -481,7 +506,7 @@ const CompareMapvue_type_script_setup_true_lang_js_default_ = {
|
|
|
481
506
|
tree4Index.value = 1;
|
|
482
507
|
}
|
|
483
508
|
|
|
484
|
-
viewModel && viewModel.changeMode(mode);
|
|
509
|
+
viewModel && viewModel.changeMode(mode, props.defaultSelectAll);
|
|
485
510
|
} //返回
|
|
486
511
|
|
|
487
512
|
|
|
@@ -527,34 +552,38 @@ const CompareMapvue_type_script_setup_true_lang_js_default_ = {
|
|
|
527
552
|
top: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(offsetTop)
|
|
528
553
|
}),
|
|
529
554
|
index: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(tree1Index),
|
|
555
|
+
defaultSelectAll: props.defaultSelectAll,
|
|
530
556
|
setLayerState: setLayerState
|
|
531
557
|
}, null, 8
|
|
532
558
|
/* PROPS */
|
|
533
|
-
, ["style", "index"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(showTree2) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(CompareMapTree), {
|
|
559
|
+
, ["style", "index", "defaultSelectAll"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(showTree2) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(CompareMapTree), {
|
|
534
560
|
key: 1,
|
|
535
561
|
class: "layer-tree-2",
|
|
536
562
|
style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)({
|
|
537
563
|
top: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(offsetTop)
|
|
538
564
|
}),
|
|
539
565
|
index: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(tree2Index),
|
|
566
|
+
defaultSelectAll: props.defaultSelectAll,
|
|
540
567
|
setLayerState: setLayerState
|
|
541
568
|
}, null, 8
|
|
542
569
|
/* PROPS */
|
|
543
|
-
, ["style", "index"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(showTree3) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(CompareMapTree), {
|
|
570
|
+
, ["style", "index", "defaultSelectAll"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(showTree3) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(CompareMapTree), {
|
|
544
571
|
key: 2,
|
|
545
572
|
class: "layer-tree-3",
|
|
546
573
|
index: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(tree3Index),
|
|
574
|
+
defaultSelectAll: props.defaultSelectAll,
|
|
547
575
|
setLayerState: setLayerState
|
|
548
576
|
}, null, 8
|
|
549
577
|
/* PROPS */
|
|
550
|
-
, ["index"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(showTree4) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(CompareMapTree), {
|
|
578
|
+
, ["index", "defaultSelectAll"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(showTree4) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(CompareMapTree), {
|
|
551
579
|
key: 3,
|
|
552
580
|
class: "layer-tree-4",
|
|
553
581
|
index: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(tree4Index),
|
|
582
|
+
defaultSelectAll: props.defaultSelectAll,
|
|
554
583
|
setLayerState: setLayerState
|
|
555
584
|
}, null, 8
|
|
556
585
|
/* PROPS */
|
|
557
|
-
, ["index"])) : (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)(" 返回 "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
586
|
+
, ["index", "defaultSelectAll"])) : (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)(" 返回 "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
558
587
|
circle: "",
|
|
559
588
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).return,
|
|
560
589
|
class: "close-button",
|
package/compass/index.js
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
-
/***/
|
|
5
|
+
/***/ 9520:
|
|
6
6
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7
7
|
|
|
8
8
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
9
9
|
/* harmony export */ "Z": function() { return /* binding */ CompassViewModel; }
|
|
10
10
|
/* harmony export */ });
|
|
11
11
|
/* harmony import */ var _Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8270);
|
|
12
|
-
// 重置视图
|
|
13
12
|
|
|
13
|
+
// 重置视图
|
|
14
14
|
class CompassViewModel {
|
|
15
15
|
//三维viewer对象
|
|
16
16
|
constructor(viewer) {
|
|
@@ -214,12 +214,12 @@ var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(
|
|
|
214
214
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
215
215
|
var client_icons_vue_ = __webpack_require__(348);
|
|
216
216
|
// EXTERNAL MODULE: ./src/webgl/compass/CompassViewModel.js
|
|
217
|
-
var CompassViewModel = __webpack_require__(
|
|
217
|
+
var CompassViewModel = __webpack_require__(9520);
|
|
218
218
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
219
219
|
var gis_utils_ = __webpack_require__(826);
|
|
220
220
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
221
221
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
222
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js
|
|
222
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/compass/Compass.vue?vue&type=script&setup=true&lang=js
|
|
223
223
|
|
|
224
224
|
|
|
225
225
|
|
|
@@ -2,30 +2,22 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
-
/***/
|
|
5
|
+
/***/ 1349:
|
|
6
6
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
__webpack_require__
|
|
11
|
-
|
|
12
|
-
});
|
|
13
|
-
|
|
14
|
-
;// CONCATENATED MODULE: external "element-plus/es"
|
|
15
|
-
var es_namespaceObject = require("element-plus/es");
|
|
16
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/init.js"
|
|
17
|
-
var init_js_ = __webpack_require__(5406);
|
|
18
|
-
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
19
|
-
;// CONCATENATED MODULE: ./src/common/_ui/message/index.js
|
|
8
|
+
/* harmony import */ var element_plus_es__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2442);
|
|
9
|
+
/* harmony import */ var element_plus_es__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(element_plus_es__WEBPACK_IMPORTED_MODULE_0__);
|
|
10
|
+
/* harmony import */ var _init__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(5406);
|
|
11
|
+
/* harmony import */ var _init__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_init__WEBPACK_IMPORTED_MODULE_1__);
|
|
20
12
|
|
|
21
13
|
|
|
22
14
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
Vue.component("KqMessage",
|
|
15
|
+
element_plus_es__WEBPACK_IMPORTED_MODULE_0__.ElMessage.install = (Vue, opts) => {
|
|
16
|
+
_init__WEBPACK_IMPORTED_MODULE_1___default()(Vue, opts);
|
|
17
|
+
Vue.component("KqMessage", element_plus_es__WEBPACK_IMPORTED_MODULE_0__.ElMessage);
|
|
26
18
|
};
|
|
27
19
|
|
|
28
|
-
/* harmony default export */
|
|
20
|
+
/* harmony default export */ __webpack_exports__["Z"] = (element_plus_es__WEBPACK_IMPORTED_MODULE_0__.ElMessage);
|
|
29
21
|
|
|
30
22
|
/***/ }),
|
|
31
23
|
|
|
@@ -36,6 +28,13 @@ module.exports = require("@kq_npm/client_icons_vue");
|
|
|
36
28
|
|
|
37
29
|
/***/ }),
|
|
38
30
|
|
|
31
|
+
/***/ 2442:
|
|
32
|
+
/***/ (function(module) {
|
|
33
|
+
|
|
34
|
+
module.exports = require("element-plus/es");
|
|
35
|
+
|
|
36
|
+
/***/ }),
|
|
37
|
+
|
|
39
38
|
/***/ 7080:
|
|
40
39
|
/***/ (function(module) {
|
|
41
40
|
|
|
@@ -180,11 +179,11 @@ var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(
|
|
|
180
179
|
var gis_utils_ = __webpack_require__(826);
|
|
181
180
|
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
182
181
|
var defineProperty = __webpack_require__(8270);
|
|
183
|
-
// EXTERNAL MODULE: ./src/common/_ui/message/index.js
|
|
184
|
-
var message = __webpack_require__(
|
|
182
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js
|
|
183
|
+
var message = __webpack_require__(1349);
|
|
185
184
|
;// CONCATENATED MODULE: ./src/webgl/excavatefillanalysis/ExcavateFillAnalysisViewModel.js
|
|
186
|
-
//填挖方分析逻辑类
|
|
187
185
|
|
|
186
|
+
//填挖方分析逻辑类
|
|
188
187
|
|
|
189
188
|
class ExcavateFillAnalysisViewModel {
|
|
190
189
|
//填挖方分析三维对象
|
|
@@ -315,7 +314,7 @@ var client_icons_vue_ = __webpack_require__(348);
|
|
|
315
314
|
var util_ = __webpack_require__(9519);
|
|
316
315
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
317
316
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
318
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js
|
|
317
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/excavatefillanalysis/ExcavateFillAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
319
318
|
|
|
320
319
|
const _hoisted_1 = {
|
|
321
320
|
class: "kq3d-excavate-fill-analysis-box"
|
|
@@ -387,10 +386,9 @@ const __default__ = {
|
|
|
387
386
|
}
|
|
388
387
|
},
|
|
389
388
|
|
|
390
|
-
setup(__props,
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
} = _ref;
|
|
389
|
+
setup(__props, {
|
|
390
|
+
expose
|
|
391
|
+
}) {
|
|
394
392
|
const props = __props;
|
|
395
393
|
const {
|
|
396
394
|
proxy
|
package/fixedzoomin/index.js
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
-
/***/
|
|
5
|
+
/***/ 7216:
|
|
6
6
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7
7
|
|
|
8
8
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
9
9
|
/* harmony export */ "Z": function() { return /* binding */ FixedZoomin3dViewModel; }
|
|
10
10
|
/* harmony export */ });
|
|
11
11
|
/* harmony import */ var _Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8270);
|
|
12
|
-
// 三维固定缩放逻辑
|
|
13
12
|
|
|
13
|
+
// 三维固定缩放逻辑
|
|
14
14
|
class FixedZoomin3dViewModel {
|
|
15
15
|
//三维viewer对象
|
|
16
16
|
constructor(viewer) {
|
|
@@ -221,12 +221,12 @@ var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(
|
|
|
221
221
|
// EXTERNAL MODULE: external "@element-plus/icons-vue"
|
|
222
222
|
var icons_vue_ = __webpack_require__(8422);
|
|
223
223
|
// EXTERNAL MODULE: ./src/webgl/fixedzoomin/FixedZoominViewModel.js
|
|
224
|
-
var FixedZoominViewModel = __webpack_require__(
|
|
224
|
+
var FixedZoominViewModel = __webpack_require__(7216);
|
|
225
225
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
226
226
|
var gis_utils_ = __webpack_require__(826);
|
|
227
227
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
228
228
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
229
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js
|
|
229
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/fixedzoomin/FixedZoomin.vue?vue&type=script&setup=true&lang=js
|
|
230
230
|
|
|
231
231
|
|
|
232
232
|
|
package/fixedzoomout/index.js
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
-
/***/
|
|
5
|
+
/***/ 8800:
|
|
6
6
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7
7
|
|
|
8
8
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
9
9
|
/* harmony export */ "Z": function() { return /* binding */ FixedZoomout3dViewModel; }
|
|
10
10
|
/* harmony export */ });
|
|
11
11
|
/* harmony import */ var _Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8270);
|
|
12
|
-
// 三维固定缩放逻辑
|
|
13
12
|
|
|
13
|
+
// 三维固定缩放逻辑
|
|
14
14
|
class FixedZoomout3dViewModel {
|
|
15
15
|
//三维viewer对象
|
|
16
16
|
constructor(viewer) {
|
|
@@ -221,12 +221,12 @@ var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(
|
|
|
221
221
|
// EXTERNAL MODULE: external "@element-plus/icons-vue"
|
|
222
222
|
var icons_vue_ = __webpack_require__(8422);
|
|
223
223
|
// EXTERNAL MODULE: ./src/webgl/fixedzoomout/FixedZoomoutViewModel.js
|
|
224
|
-
var FixedZoomoutViewModel = __webpack_require__(
|
|
224
|
+
var FixedZoomoutViewModel = __webpack_require__(8800);
|
|
225
225
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
226
226
|
var gis_utils_ = __webpack_require__(826);
|
|
227
227
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
228
228
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
229
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js
|
|
229
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/fixedzoomout/FixedZoomout.vue?vue&type=script&setup=true&lang=js
|
|
230
230
|
|
|
231
231
|
|
|
232
232
|
|
package/flight/index.js
CHANGED
|
@@ -2,42 +2,34 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
-
/***/
|
|
5
|
+
/***/ 1349:
|
|
6
6
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
__webpack_require__
|
|
11
|
-
|
|
12
|
-
});
|
|
13
|
-
|
|
14
|
-
;// CONCATENATED MODULE: external "element-plus/es"
|
|
15
|
-
var es_namespaceObject = require("element-plus/es");
|
|
16
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/init.js"
|
|
17
|
-
var init_js_ = __webpack_require__(5406);
|
|
18
|
-
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
19
|
-
;// CONCATENATED MODULE: ./src/common/_ui/message/index.js
|
|
8
|
+
/* harmony import */ var element_plus_es__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2442);
|
|
9
|
+
/* harmony import */ var element_plus_es__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(element_plus_es__WEBPACK_IMPORTED_MODULE_0__);
|
|
10
|
+
/* harmony import */ var _init__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(5406);
|
|
11
|
+
/* harmony import */ var _init__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_init__WEBPACK_IMPORTED_MODULE_1__);
|
|
20
12
|
|
|
21
13
|
|
|
22
14
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
Vue.component("KqMessage",
|
|
15
|
+
element_plus_es__WEBPACK_IMPORTED_MODULE_0__.ElMessage.install = (Vue, opts) => {
|
|
16
|
+
_init__WEBPACK_IMPORTED_MODULE_1___default()(Vue, opts);
|
|
17
|
+
Vue.component("KqMessage", element_plus_es__WEBPACK_IMPORTED_MODULE_0__.ElMessage);
|
|
26
18
|
};
|
|
27
19
|
|
|
28
|
-
/* harmony default export */
|
|
20
|
+
/* harmony default export */ __webpack_exports__["Z"] = (element_plus_es__WEBPACK_IMPORTED_MODULE_0__.ElMessage);
|
|
29
21
|
|
|
30
22
|
/***/ }),
|
|
31
23
|
|
|
32
|
-
/***/
|
|
24
|
+
/***/ 5372:
|
|
33
25
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
34
26
|
|
|
35
27
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
36
28
|
/* harmony export */ "Z": function() { return /* binding */ FlightViewModel; }
|
|
37
29
|
/* harmony export */ });
|
|
38
30
|
/* harmony import */ var _Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8270);
|
|
39
|
-
//飞行操作类
|
|
40
31
|
|
|
32
|
+
//飞行操作类
|
|
41
33
|
class FlightViewModel {
|
|
42
34
|
//飞行三维对象
|
|
43
35
|
//停止事件
|
|
@@ -158,6 +150,13 @@ module.exports = require("@kq_npm/client_icons_vue");
|
|
|
158
150
|
|
|
159
151
|
/***/ }),
|
|
160
152
|
|
|
153
|
+
/***/ 2442:
|
|
154
|
+
/***/ (function(module) {
|
|
155
|
+
|
|
156
|
+
module.exports = require("element-plus/es");
|
|
157
|
+
|
|
158
|
+
/***/ }),
|
|
159
|
+
|
|
161
160
|
/***/ 7080:
|
|
162
161
|
/***/ (function(module) {
|
|
163
162
|
|
|
@@ -298,8 +297,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
298
297
|
|
|
299
298
|
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
300
299
|
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
301
|
-
// EXTERNAL MODULE: ./src/common/_ui/message/index.js
|
|
302
|
-
var message = __webpack_require__(
|
|
300
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js
|
|
301
|
+
var message = __webpack_require__(1349);
|
|
303
302
|
// EXTERNAL MODULE: external "@element-plus/icons-vue"
|
|
304
303
|
var icons_vue_ = __webpack_require__(8422);
|
|
305
304
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
@@ -307,12 +306,12 @@ var client_icons_vue_ = __webpack_require__(348);
|
|
|
307
306
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
308
307
|
var gis_utils_ = __webpack_require__(826);
|
|
309
308
|
// EXTERNAL MODULE: ./src/webgl/flight/FlightViewModel.js
|
|
310
|
-
var FlightViewModel = __webpack_require__(
|
|
309
|
+
var FlightViewModel = __webpack_require__(5372);
|
|
311
310
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
312
311
|
var util_ = __webpack_require__(9519);
|
|
313
312
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
314
313
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
315
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js
|
|
314
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/flight/Flight.vue?vue&type=script&setup=true&lang=js
|
|
316
315
|
|
|
317
316
|
const _hoisted_1 = {
|
|
318
317
|
class: "kq-flight3d-box"
|
|
@@ -404,10 +403,9 @@ const __default__ = {
|
|
|
404
403
|
}
|
|
405
404
|
},
|
|
406
405
|
|
|
407
|
-
setup(__props,
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
} = _ref;
|
|
406
|
+
setup(__props, {
|
|
407
|
+
expose
|
|
408
|
+
}) {
|
|
411
409
|
const props = __props;
|
|
412
410
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({});
|
|
413
411
|
let isAdd = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
package/floodanalysis/index.js
CHANGED
|
@@ -2,30 +2,22 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
-
/***/
|
|
5
|
+
/***/ 1349:
|
|
6
6
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
__webpack_require__
|
|
11
|
-
|
|
12
|
-
});
|
|
13
|
-
|
|
14
|
-
;// CONCATENATED MODULE: external "element-plus/es"
|
|
15
|
-
var es_namespaceObject = require("element-plus/es");
|
|
16
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/init.js"
|
|
17
|
-
var init_js_ = __webpack_require__(5406);
|
|
18
|
-
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
19
|
-
;// CONCATENATED MODULE: ./src/common/_ui/message/index.js
|
|
8
|
+
/* harmony import */ var element_plus_es__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2442);
|
|
9
|
+
/* harmony import */ var element_plus_es__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(element_plus_es__WEBPACK_IMPORTED_MODULE_0__);
|
|
10
|
+
/* harmony import */ var _init__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(5406);
|
|
11
|
+
/* harmony import */ var _init__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_init__WEBPACK_IMPORTED_MODULE_1__);
|
|
20
12
|
|
|
21
13
|
|
|
22
14
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
Vue.component("KqMessage",
|
|
15
|
+
element_plus_es__WEBPACK_IMPORTED_MODULE_0__.ElMessage.install = (Vue, opts) => {
|
|
16
|
+
_init__WEBPACK_IMPORTED_MODULE_1___default()(Vue, opts);
|
|
17
|
+
Vue.component("KqMessage", element_plus_es__WEBPACK_IMPORTED_MODULE_0__.ElMessage);
|
|
26
18
|
};
|
|
27
19
|
|
|
28
|
-
/* harmony default export */
|
|
20
|
+
/* harmony default export */ __webpack_exports__["Z"] = (element_plus_es__WEBPACK_IMPORTED_MODULE_0__.ElMessage);
|
|
29
21
|
|
|
30
22
|
/***/ }),
|
|
31
23
|
|
|
@@ -36,6 +28,13 @@ module.exports = require("@kq_npm/client_icons_vue");
|
|
|
36
28
|
|
|
37
29
|
/***/ }),
|
|
38
30
|
|
|
31
|
+
/***/ 2442:
|
|
32
|
+
/***/ (function(module) {
|
|
33
|
+
|
|
34
|
+
module.exports = require("element-plus/es");
|
|
35
|
+
|
|
36
|
+
/***/ }),
|
|
37
|
+
|
|
39
38
|
/***/ 7080:
|
|
40
39
|
/***/ (function(module) {
|
|
41
40
|
|
|
@@ -189,8 +188,8 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
189
188
|
var defineProperty = __webpack_require__(8270);
|
|
190
189
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/const-image"
|
|
191
190
|
var const_image_ = __webpack_require__(9702);
|
|
192
|
-
// EXTERNAL MODULE: ./src/common/_ui/message/index.js
|
|
193
|
-
var message = __webpack_require__(
|
|
191
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js
|
|
192
|
+
var message = __webpack_require__(1349);
|
|
194
193
|
;// CONCATENATED MODULE: ./src/webgl/floodanalysis/FloodAnalysisViewModel.js
|
|
195
194
|
|
|
196
195
|
//地形淹没分析逻辑类
|
|
@@ -241,9 +240,7 @@ class FloodAnalysisViewModel {
|
|
|
241
240
|
this._floodModelAnalysis.maxHeight = options.maxHeight;
|
|
242
241
|
this._floodModelAnalysis.colorImage = options.colorImage;
|
|
243
242
|
var that = this;
|
|
244
|
-
this._measureHandler = new Cesium.Kq3dMeasureHandler(scenceView._viewer
|
|
245
|
-
dblClickEnd: true
|
|
246
|
-
});
|
|
243
|
+
this._measureHandler = new Cesium.Kq3dMeasureHandler(scenceView._viewer);
|
|
247
244
|
|
|
248
245
|
this._measureHandler.measureEvent.addEventListener(function (result) {
|
|
249
246
|
that._measureResult = result;
|
|
@@ -436,7 +433,7 @@ var client_icons_vue_ = __webpack_require__(348);
|
|
|
436
433
|
var util_ = __webpack_require__(9519);
|
|
437
434
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
438
435
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
439
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js
|
|
436
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/floodanalysis/FloodAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
440
437
|
|
|
441
438
|
const _hoisted_1 = {
|
|
442
439
|
class: "kq3d-flood-analysis-box"
|
|
@@ -504,10 +501,9 @@ const __default__ = {
|
|
|
504
501
|
}
|
|
505
502
|
},
|
|
506
503
|
|
|
507
|
-
setup(__props,
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
} = _ref;
|
|
504
|
+
setup(__props, {
|
|
505
|
+
expose
|
|
506
|
+
}) {
|
|
511
507
|
const props = __props;
|
|
512
508
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({});
|
|
513
509
|
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(""); // 淹没色调图片
|