@kq_npm/client3d_webgl_vue 4.0.5-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.
Files changed (66) hide show
  1. package/adddata/index.js +43 -180
  2. package/aspectanalysis/index.js +23 -25
  3. package/baseterraingallery/index.js +7 -8
  4. package/boxclip/index.js +23 -25
  5. package/clientPrint/index.js +4 -6
  6. package/comparemap/index.js +51 -22
  7. package/compass/index.js +4 -4
  8. package/excavatefillanalysis/index.js +23 -25
  9. package/fixedzoomin/index.js +4 -4
  10. package/fixedzoomout/index.js +4 -4
  11. package/flight/index.js +25 -27
  12. package/floodanalysis/index.js +23 -27
  13. package/geologicalbodyanalysis/index.js +900 -0
  14. package/geologicalbodyanalysis/style/geologicalbodyanalysis.css +1 -0
  15. package/geologicalbodyanalysis/style/index.js +3 -0
  16. package/gpuspatialquery/index.js +25 -25
  17. package/hawkeye/index.js +7 -8
  18. package/headertemp/index.js +4 -5
  19. package/index.js +20969 -14726
  20. package/isolineanalysis/index.js +22 -24
  21. package/light/index.js +1067 -0
  22. package/light/style/index.js +3 -0
  23. package/light/style/light.css +1 -0
  24. package/limitheightanalysis/index.js +751 -0
  25. package/limitheightanalysis/style/index.js +3 -0
  26. package/limitheightanalysis/style/limitheightanalysis.css +1 -0
  27. package/measure/index.js +46 -38
  28. package/modelFlat/index.js +483 -0
  29. package/modelFlat/style/index.js +3 -0
  30. package/modelFlat/style/modelFlat.css +1 -0
  31. package/modelfilter/index.js +296 -336
  32. package/modelfilter/style/modelfilter.css +1 -1
  33. package/modelprofileanalysis/index.js +7 -8
  34. package/modelselect/index.js +20 -157
  35. package/package.json +1 -1
  36. package/particleeffect/index.js +6 -142
  37. package/planeclip/index.js +23 -25
  38. package/resetview/index.js +4 -4
  39. package/roller/index.js +7 -8
  40. package/scaneffect/index.js +1730 -0
  41. package/scaneffect/style/index.js +3 -0
  42. package/scaneffect/style/scaneffect.css +1 -0
  43. package/scenceview/index.js +13752 -7347
  44. package/sceneset/index.js +2097 -0
  45. package/sceneset/style/index.js +3 -0
  46. package/sceneset/style/sceneset.css +1 -0
  47. package/screenshot/index.js +7 -8
  48. package/shadowanalysis/index.js +20 -158
  49. package/sightlineanalysis/index.js +26 -19
  50. package/sightlineanalysis/style/divpoint.css +1 -1
  51. package/skylineanalysis/index.js +23 -25
  52. package/slopeanalysis/index.js +22 -24
  53. package/statusbar/index.js +4 -4
  54. package/style.css +1 -1
  55. package/terrainoperation/index.js +20 -157
  56. package/terrainprofileanalysis/index.js +620 -0
  57. package/terrainprofileanalysis/style/index.js +3 -0
  58. package/terrainprofileanalysis/style/terrainprofileanalysis.css +1 -0
  59. package/underground/index.js +7 -8
  60. package/videofusion/index.js +23 -35
  61. package/videoproject/index.js +23 -35
  62. package/viewshedanalysis/index.js +4 -5
  63. package/weathereffect/index.js +6 -142
  64. package/wireframesketch/index.js +521 -0
  65. package/wireframesketch/style/index.js +3 -0
  66. package/wireframesketch/style/wireframesketch.css +1 -0
@@ -1,160 +1,43 @@
1
1
  /******/ (function() { // webpackBootstrap
2
+ /******/ "use strict";
2
3
  /******/ var __webpack_modules__ = ({
3
4
 
4
- /***/ 1283:
5
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
6
-
7
- __webpack_require__(4271);
8
-
9
- /*global window, global*/
10
- var util = __webpack_require__(6464);
11
-
12
- var assert = __webpack_require__(9084);
13
-
14
- function now() {
15
- return new Date().getTime();
16
- }
17
-
18
- var slice = Array.prototype.slice;
19
- var console;
20
- var times = {};
21
-
22
- if (typeof __webpack_require__.g !== "undefined" && __webpack_require__.g.console) {
23
- console = __webpack_require__.g.console;
24
- } else if (typeof window !== "undefined" && window.console) {
25
- console = window.console;
26
- } else {
27
- console = {};
28
- }
29
-
30
- var functions = [[log, "log"], [info, "info"], [warn, "warn"], [error, "error"], [time, "time"], [timeEnd, "timeEnd"], [trace, "trace"], [dir, "dir"], [consoleAssert, "assert"]];
31
-
32
- for (var i = 0; i < functions.length; i++) {
33
- var tuple = functions[i];
34
- var f = tuple[0];
35
- var name = tuple[1];
36
-
37
- if (!console[name]) {
38
- console[name] = f;
39
- }
40
- }
41
-
42
- module.exports = console;
43
-
44
- function log() {}
45
-
46
- function info() {
47
- console.log.apply(console, arguments);
48
- }
49
-
50
- function warn() {
51
- console.log.apply(console, arguments);
52
- }
53
-
54
- function error() {
55
- console.warn.apply(console, arguments);
56
- }
57
-
58
- function time(label) {
59
- times[label] = now();
60
- }
61
-
62
- function timeEnd(label) {
63
- var time = times[label];
64
-
65
- if (!time) {
66
- throw new Error("No such label: " + label);
67
- }
68
-
69
- delete times[label];
70
- var duration = now() - time;
71
- console.log(label + ": " + duration + "ms");
72
- }
73
-
74
- function trace() {
75
- var err = new Error();
76
- err.name = "Trace";
77
- err.message = util.format.apply(null, arguments);
78
- console.error(err.stack);
79
- }
80
-
81
- function dir(object) {
82
- console.log(util.inspect(object) + "\n");
83
- }
84
-
85
- function consoleAssert(expression) {
86
- if (!expression) {
87
- var arr = slice.call(arguments, 1);
88
- assert.ok(false, util.format.apply(null, arr));
89
- }
90
- }
91
-
92
- /***/ }),
93
-
94
- /***/ 8143:
5
+ /***/ 1349:
95
6
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
96
7
 
97
- "use strict";
98
-
99
- // EXPORTS
100
- __webpack_require__.d(__webpack_exports__, {
101
- "Z": function() { return /* binding */ message; }
102
- });
103
-
104
- ;// CONCATENATED MODULE: external "element-plus/es"
105
- var es_namespaceObject = require("element-plus/es");
106
- // EXTERNAL MODULE: external "@kq_npm/client_common_vue/init.js"
107
- var init_js_ = __webpack_require__(5406);
108
- var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
109
- ;// 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__);
110
12
 
111
13
 
112
14
 
113
- es_namespaceObject.ElMessage.install = (Vue, opts) => {
114
- init_js_default()(Vue, opts);
115
- Vue.component("KqMessage", es_namespaceObject.ElMessage);
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);
116
18
  };
117
19
 
118
- /* harmony default export */ var message = (es_namespaceObject.ElMessage);
20
+ /* harmony default export */ __webpack_exports__["Z"] = (element_plus_es__WEBPACK_IMPORTED_MODULE_0__.ElMessage);
119
21
 
120
22
  /***/ }),
121
23
 
122
24
  /***/ 348:
123
25
  /***/ (function(module) {
124
26
 
125
- "use strict";
126
27
  module.exports = require("@kq_npm/client_icons_vue");
127
28
 
128
29
  /***/ }),
129
30
 
130
- /***/ 9084:
31
+ /***/ 2442:
131
32
  /***/ (function(module) {
132
33
 
133
- "use strict";
134
- module.exports = require("assert");
135
-
136
- /***/ }),
137
-
138
- /***/ 4271:
139
- /***/ (function(module) {
140
-
141
- "use strict";
142
- module.exports = require("core-js/modules/es.error.cause.js");
143
-
144
- /***/ }),
145
-
146
- /***/ 6464:
147
- /***/ (function(module) {
148
-
149
- "use strict";
150
- module.exports = require("util");
34
+ module.exports = require("element-plus/es");
151
35
 
152
36
  /***/ }),
153
37
 
154
38
  /***/ 7080:
155
39
  /***/ (function(module) {
156
40
 
157
- "use strict";
158
41
  module.exports = require("vue-i18n/dist/vue-i18n.cjs.js");
159
42
 
160
43
  /***/ }),
@@ -162,7 +45,6 @@ module.exports = require("vue-i18n/dist/vue-i18n.cjs.js");
162
45
  /***/ 826:
163
46
  /***/ (function(module) {
164
47
 
165
- "use strict";
166
48
  module.exports = require("@kq_npm/client_common_vue/_utils/gis-utils");
167
49
 
168
50
  /***/ }),
@@ -170,7 +52,6 @@ module.exports = require("@kq_npm/client_common_vue/_utils/gis-utils");
170
52
  /***/ 9519:
171
53
  /***/ (function(module) {
172
54
 
173
- "use strict";
174
55
  module.exports = require("@kq_npm/client_common_vue/_utils/util");
175
56
 
176
57
  /***/ }),
@@ -178,7 +59,6 @@ module.exports = require("@kq_npm/client_common_vue/_utils/util");
178
59
  /***/ 5406:
179
60
  /***/ (function(module) {
180
61
 
181
- "use strict";
182
62
  module.exports = require("@kq_npm/client_common_vue/init.js");
183
63
 
184
64
  /***/ }),
@@ -186,7 +66,6 @@ module.exports = require("@kq_npm/client_common_vue/init.js");
186
66
  /***/ 637:
187
67
  /***/ (function(module) {
188
68
 
189
- "use strict";
190
69
  module.exports = require("vue");
191
70
 
192
71
  /***/ }),
@@ -194,7 +73,6 @@ module.exports = require("vue");
194
73
  /***/ 8270:
195
74
  /***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
196
75
 
197
- "use strict";
198
76
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
199
77
  /* harmony export */ "Z": function() { return /* binding */ _defineProperty; }
200
78
  /* harmony export */ });
@@ -266,18 +144,6 @@ function _defineProperty(obj, key, value) {
266
144
  /******/ };
267
145
  /******/ }();
268
146
  /******/
269
- /******/ /* webpack/runtime/global */
270
- /******/ !function() {
271
- /******/ __webpack_require__.g = (function() {
272
- /******/ if (typeof globalThis === 'object') return globalThis;
273
- /******/ try {
274
- /******/ return this || new Function('return this')();
275
- /******/ } catch (e) {
276
- /******/ if (typeof window === 'object') return window;
277
- /******/ }
278
- /******/ })();
279
- /******/ }();
280
- /******/
281
147
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
282
148
  /******/ !function() {
283
149
  /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
@@ -296,9 +162,8 @@ function _defineProperty(obj, key, value) {
296
162
  /******/
297
163
  /************************************************************************/
298
164
  var __webpack_exports__ = {};
299
- // This entry need to be wrapped in an IIFE because it need to be in strict mode.
165
+ // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
300
166
  !function() {
301
- "use strict";
302
167
  // ESM COMPAT FLAG
303
168
  __webpack_require__.r(__webpack_exports__);
304
169
 
@@ -314,12 +179,11 @@ var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(
314
179
  var gis_utils_ = __webpack_require__(826);
315
180
  // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
316
181
  var defineProperty = __webpack_require__(8270);
317
- // EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
318
- var message = __webpack_require__(8143);
182
+ // EXTERNAL MODULE: ./src/common/_ui/message/index.js
183
+ var message = __webpack_require__(1349);
319
184
  ;// CONCATENATED MODULE: ./src/webgl/terrainoperation/TerrainOperationViewModel.js
320
- /* provided dependency */ var console = __webpack_require__(1283);
321
- //地形淹没分析逻辑类
322
185
 
186
+ //地形淹没分析逻辑类
323
187
 
324
188
  class TerrainOperationViewModel {
325
189
  //地形开挖三维对象
@@ -540,7 +404,7 @@ var client_icons_vue_ = __webpack_require__(348);
540
404
  var util_ = __webpack_require__(9519);
541
405
  // EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
542
406
  var vue_i18n_cjs_js_ = __webpack_require__(7080);
543
- ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-2.use!./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/terrainoperation/TerrainOperation.vue?vue&type=script&setup=true&lang=js
407
+ ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/terrainoperation/TerrainOperation.vue?vue&type=script&setup=true&lang=js
544
408
 
545
409
  const _hoisted_1 = {
546
410
  class: "kq3d-terrain-operation-analysis-box"
@@ -607,10 +471,9 @@ const __default__ = {
607
471
  }
608
472
  },
609
473
 
610
- setup(__props, _ref) {
611
- let {
612
- expose
613
- } = _ref;
474
+ setup(__props, {
475
+ expose
476
+ }) {
614
477
  const props = __props;
615
478
  const {
616
479
  proxy