@kq_npm/client3d_webgl_vue 3.9.9-beta → 4.0.1-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 +149 -10
- package/aspectanalysis/index.js +8 -7
- package/baseterraingallery/index.js +8 -7
- package/boxclip/index.js +9 -7
- package/clientPrint/index.js +6 -4
- package/comparemap/index.js +11 -9
- package/compass/index.js +4 -4
- package/excavatefillanalysis/index.js +8 -7
- package/fixedzoomin/index.js +4 -4
- package/fixedzoomout/index.js +4 -4
- package/flight/index.js +10 -9
- package/floodanalysis/index.js +7 -6
- package/gpuspatialquery/index.js +8 -7
- package/hawkeye/index.js +8 -7
- package/headertemp/index.js +5 -4
- package/index.js +567 -189
- package/isolineanalysis/index.js +7 -6
- package/measure/index.js +15 -12
- package/modelselect/index.js +145 -9
- package/package.json +1 -1
- package/particleeffect/index.js +142 -6
- package/planeclip/index.js +8 -7
- package/profileanalysis/index.js +8 -7
- package/resetview/index.js +4 -4
- package/roller/index.js +8 -7
- package/scenceview/index.js +728 -291
- package/scenceview/style/scenceview.css +1 -1
- package/screenshot/index.js +8 -7
- package/shadowanalysis/index.js +146 -9
- package/sightlineanalysis/index.js +8 -6
- package/skylineanalysis/index.js +8 -7
- package/slopeanalysis/index.js +7 -6
- package/statusbar/index.js +4 -4
- package/style.css +1 -1
- package/terrainoperation/index.js +145 -9
- package/underground/index.js +8 -7
- package/viewshedanalysis/index.js +5 -4
- package/weathereffect/index.js +142 -6
|
@@ -1,10 +1,100 @@
|
|
|
1
1
|
/******/ (function() { // webpackBootstrap
|
|
2
|
-
/******/ "use strict";
|
|
3
2
|
/******/ var __webpack_modules__ = ({
|
|
4
3
|
|
|
5
|
-
/***/
|
|
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:
|
|
6
95
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7
96
|
|
|
97
|
+
"use strict";
|
|
8
98
|
|
|
9
99
|
// EXPORTS
|
|
10
100
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -32,13 +122,39 @@ es_namespaceObject.ElMessage.install = (Vue, opts) => {
|
|
|
32
122
|
/***/ 348:
|
|
33
123
|
/***/ (function(module) {
|
|
34
124
|
|
|
125
|
+
"use strict";
|
|
35
126
|
module.exports = require("@kq_npm/client_icons_vue");
|
|
36
127
|
|
|
37
128
|
/***/ }),
|
|
38
129
|
|
|
130
|
+
/***/ 9084:
|
|
131
|
+
/***/ (function(module) {
|
|
132
|
+
|
|
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");
|
|
151
|
+
|
|
152
|
+
/***/ }),
|
|
153
|
+
|
|
39
154
|
/***/ 7080:
|
|
40
155
|
/***/ (function(module) {
|
|
41
156
|
|
|
157
|
+
"use strict";
|
|
42
158
|
module.exports = require("vue-i18n/dist/vue-i18n.cjs.js");
|
|
43
159
|
|
|
44
160
|
/***/ }),
|
|
@@ -46,6 +162,7 @@ module.exports = require("vue-i18n/dist/vue-i18n.cjs.js");
|
|
|
46
162
|
/***/ 826:
|
|
47
163
|
/***/ (function(module) {
|
|
48
164
|
|
|
165
|
+
"use strict";
|
|
49
166
|
module.exports = require("@kq_npm/client_common_vue/_utils/gis-utils");
|
|
50
167
|
|
|
51
168
|
/***/ }),
|
|
@@ -53,6 +170,7 @@ module.exports = require("@kq_npm/client_common_vue/_utils/gis-utils");
|
|
|
53
170
|
/***/ 9519:
|
|
54
171
|
/***/ (function(module) {
|
|
55
172
|
|
|
173
|
+
"use strict";
|
|
56
174
|
module.exports = require("@kq_npm/client_common_vue/_utils/util");
|
|
57
175
|
|
|
58
176
|
/***/ }),
|
|
@@ -60,6 +178,7 @@ module.exports = require("@kq_npm/client_common_vue/_utils/util");
|
|
|
60
178
|
/***/ 5406:
|
|
61
179
|
/***/ (function(module) {
|
|
62
180
|
|
|
181
|
+
"use strict";
|
|
63
182
|
module.exports = require("@kq_npm/client_common_vue/init.js");
|
|
64
183
|
|
|
65
184
|
/***/ }),
|
|
@@ -67,6 +186,7 @@ module.exports = require("@kq_npm/client_common_vue/init.js");
|
|
|
67
186
|
/***/ 637:
|
|
68
187
|
/***/ (function(module) {
|
|
69
188
|
|
|
189
|
+
"use strict";
|
|
70
190
|
module.exports = require("vue");
|
|
71
191
|
|
|
72
192
|
/***/ }),
|
|
@@ -74,6 +194,7 @@ module.exports = require("vue");
|
|
|
74
194
|
/***/ 8270:
|
|
75
195
|
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
76
196
|
|
|
197
|
+
"use strict";
|
|
77
198
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
78
199
|
/* harmony export */ "Z": function() { return /* binding */ _defineProperty; }
|
|
79
200
|
/* harmony export */ });
|
|
@@ -145,6 +266,18 @@ function _defineProperty(obj, key, value) {
|
|
|
145
266
|
/******/ };
|
|
146
267
|
/******/ }();
|
|
147
268
|
/******/
|
|
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
|
+
/******/
|
|
148
281
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
149
282
|
/******/ !function() {
|
|
150
283
|
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
@@ -163,8 +296,9 @@ function _defineProperty(obj, key, value) {
|
|
|
163
296
|
/******/
|
|
164
297
|
/************************************************************************/
|
|
165
298
|
var __webpack_exports__ = {};
|
|
166
|
-
// This entry need to be wrapped in an IIFE because it need to be
|
|
299
|
+
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
|
167
300
|
!function() {
|
|
301
|
+
"use strict";
|
|
168
302
|
// ESM COMPAT FLAG
|
|
169
303
|
__webpack_require__.r(__webpack_exports__);
|
|
170
304
|
|
|
@@ -181,10 +315,11 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
181
315
|
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
182
316
|
var defineProperty = __webpack_require__(8270);
|
|
183
317
|
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
184
|
-
var message = __webpack_require__(
|
|
318
|
+
var message = __webpack_require__(8143);
|
|
185
319
|
;// CONCATENATED MODULE: ./src/webgl/terrainoperation/TerrainOperationViewModel.js
|
|
320
|
+
/* provided dependency */ var console = __webpack_require__(1283);
|
|
321
|
+
//地形淹没分析逻辑类
|
|
186
322
|
|
|
187
|
-
//地形淹没分析逻辑类
|
|
188
323
|
|
|
189
324
|
class TerrainOperationViewModel {
|
|
190
325
|
//地形开挖三维对象
|
|
@@ -405,7 +540,7 @@ var client_icons_vue_ = __webpack_require__(348);
|
|
|
405
540
|
var util_ = __webpack_require__(9519);
|
|
406
541
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
407
542
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
408
|
-
;// 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
|
|
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
|
|
409
544
|
|
|
410
545
|
const _hoisted_1 = {
|
|
411
546
|
class: "kq3d-terrain-operation-analysis-box"
|
|
@@ -472,9 +607,10 @@ const __default__ = {
|
|
|
472
607
|
}
|
|
473
608
|
},
|
|
474
609
|
|
|
475
|
-
setup(__props, {
|
|
476
|
-
|
|
477
|
-
|
|
610
|
+
setup(__props, _ref) {
|
|
611
|
+
let {
|
|
612
|
+
expose
|
|
613
|
+
} = _ref;
|
|
478
614
|
const props = __props;
|
|
479
615
|
const {
|
|
480
616
|
proxy
|
package/underground/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
-
/***/
|
|
5
|
+
/***/ 8050:
|
|
6
6
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7
7
|
|
|
8
8
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
@@ -210,12 +210,12 @@ var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(
|
|
|
210
210
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
211
211
|
var gis_utils_ = __webpack_require__(826);
|
|
212
212
|
// EXTERNAL MODULE: ./src/webgl/underground/UndergroundViewModel.js
|
|
213
|
-
var UndergroundViewModel = __webpack_require__(
|
|
213
|
+
var UndergroundViewModel = __webpack_require__(8050);
|
|
214
214
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
215
215
|
var util_ = __webpack_require__(9519);
|
|
216
216
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
217
217
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
218
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/underground/Underground.vue?vue&type=script&setup=true&lang=js
|
|
218
|
+
;// 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/underground/Underground.vue?vue&type=script&setup=true&lang=js
|
|
219
219
|
|
|
220
220
|
const _hoisted_1 = {
|
|
221
221
|
class: "kq3d-underground-switch"
|
|
@@ -237,10 +237,11 @@ const __default__ = {
|
|
|
237
237
|
},
|
|
238
238
|
emits: ["undergroundChange"],
|
|
239
239
|
|
|
240
|
-
setup(__props, {
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
240
|
+
setup(__props, _ref) {
|
|
241
|
+
let {
|
|
242
|
+
expose,
|
|
243
|
+
emit
|
|
244
|
+
} = _ref;
|
|
244
245
|
const props = __props;
|
|
245
246
|
const {
|
|
246
247
|
proxy
|
|
@@ -304,7 +304,7 @@ var client_icons_vue_ = __webpack_require__(348);
|
|
|
304
304
|
var util_ = __webpack_require__(9519);
|
|
305
305
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
306
306
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
307
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/viewshedanalysis/ViewshedAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
307
|
+
;// 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/viewshedanalysis/ViewshedAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
308
308
|
|
|
309
309
|
const _hoisted_1 = {
|
|
310
310
|
class: "kq3d-viewshed-analysis-box"
|
|
@@ -363,9 +363,10 @@ const __default__ = {
|
|
|
363
363
|
}
|
|
364
364
|
},
|
|
365
365
|
|
|
366
|
-
setup(__props, {
|
|
367
|
-
|
|
368
|
-
|
|
366
|
+
setup(__props, _ref) {
|
|
367
|
+
let {
|
|
368
|
+
expose
|
|
369
|
+
} = _ref;
|
|
369
370
|
const props = __props;
|
|
370
371
|
const {
|
|
371
372
|
proxy
|
package/weathereffect/index.js
CHANGED
|
@@ -1,17 +1,132 @@
|
|
|
1
1
|
/******/ (function() { // webpackBootstrap
|
|
2
|
-
/******/ "use strict";
|
|
3
2
|
/******/ var __webpack_modules__ = ({
|
|
4
3
|
|
|
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
|
+
|
|
5
94
|
/***/ 348:
|
|
6
95
|
/***/ (function(module) {
|
|
7
96
|
|
|
97
|
+
"use strict";
|
|
8
98
|
module.exports = require("@kq_npm/client_icons_vue");
|
|
9
99
|
|
|
10
100
|
/***/ }),
|
|
11
101
|
|
|
102
|
+
/***/ 9084:
|
|
103
|
+
/***/ (function(module) {
|
|
104
|
+
|
|
105
|
+
"use strict";
|
|
106
|
+
module.exports = require("assert");
|
|
107
|
+
|
|
108
|
+
/***/ }),
|
|
109
|
+
|
|
110
|
+
/***/ 4271:
|
|
111
|
+
/***/ (function(module) {
|
|
112
|
+
|
|
113
|
+
"use strict";
|
|
114
|
+
module.exports = require("core-js/modules/es.error.cause.js");
|
|
115
|
+
|
|
116
|
+
/***/ }),
|
|
117
|
+
|
|
118
|
+
/***/ 6464:
|
|
119
|
+
/***/ (function(module) {
|
|
120
|
+
|
|
121
|
+
"use strict";
|
|
122
|
+
module.exports = require("util");
|
|
123
|
+
|
|
124
|
+
/***/ }),
|
|
125
|
+
|
|
12
126
|
/***/ 7080:
|
|
13
127
|
/***/ (function(module) {
|
|
14
128
|
|
|
129
|
+
"use strict";
|
|
15
130
|
module.exports = require("vue-i18n/dist/vue-i18n.cjs.js");
|
|
16
131
|
|
|
17
132
|
/***/ }),
|
|
@@ -19,6 +134,7 @@ module.exports = require("vue-i18n/dist/vue-i18n.cjs.js");
|
|
|
19
134
|
/***/ 9702:
|
|
20
135
|
/***/ (function(module) {
|
|
21
136
|
|
|
137
|
+
"use strict";
|
|
22
138
|
module.exports = require("@kq_npm/client_common_vue/_utils/const-image");
|
|
23
139
|
|
|
24
140
|
/***/ }),
|
|
@@ -26,6 +142,7 @@ module.exports = require("@kq_npm/client_common_vue/_utils/const-image");
|
|
|
26
142
|
/***/ 826:
|
|
27
143
|
/***/ (function(module) {
|
|
28
144
|
|
|
145
|
+
"use strict";
|
|
29
146
|
module.exports = require("@kq_npm/client_common_vue/_utils/gis-utils");
|
|
30
147
|
|
|
31
148
|
/***/ }),
|
|
@@ -33,6 +150,7 @@ module.exports = require("@kq_npm/client_common_vue/_utils/gis-utils");
|
|
|
33
150
|
/***/ 9519:
|
|
34
151
|
/***/ (function(module) {
|
|
35
152
|
|
|
153
|
+
"use strict";
|
|
36
154
|
module.exports = require("@kq_npm/client_common_vue/_utils/util");
|
|
37
155
|
|
|
38
156
|
/***/ }),
|
|
@@ -40,6 +158,7 @@ module.exports = require("@kq_npm/client_common_vue/_utils/util");
|
|
|
40
158
|
/***/ 5406:
|
|
41
159
|
/***/ (function(module) {
|
|
42
160
|
|
|
161
|
+
"use strict";
|
|
43
162
|
module.exports = require("@kq_npm/client_common_vue/init.js");
|
|
44
163
|
|
|
45
164
|
/***/ }),
|
|
@@ -47,6 +166,7 @@ module.exports = require("@kq_npm/client_common_vue/init.js");
|
|
|
47
166
|
/***/ 637:
|
|
48
167
|
/***/ (function(module) {
|
|
49
168
|
|
|
169
|
+
"use strict";
|
|
50
170
|
module.exports = require("vue");
|
|
51
171
|
|
|
52
172
|
/***/ }),
|
|
@@ -54,6 +174,7 @@ module.exports = require("vue");
|
|
|
54
174
|
/***/ 8270:
|
|
55
175
|
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
56
176
|
|
|
177
|
+
"use strict";
|
|
57
178
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
58
179
|
/* harmony export */ "Z": function() { return /* binding */ _defineProperty; }
|
|
59
180
|
/* harmony export */ });
|
|
@@ -125,6 +246,18 @@ function _defineProperty(obj, key, value) {
|
|
|
125
246
|
/******/ };
|
|
126
247
|
/******/ }();
|
|
127
248
|
/******/
|
|
249
|
+
/******/ /* webpack/runtime/global */
|
|
250
|
+
/******/ !function() {
|
|
251
|
+
/******/ __webpack_require__.g = (function() {
|
|
252
|
+
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
253
|
+
/******/ try {
|
|
254
|
+
/******/ return this || new Function('return this')();
|
|
255
|
+
/******/ } catch (e) {
|
|
256
|
+
/******/ if (typeof window === 'object') return window;
|
|
257
|
+
/******/ }
|
|
258
|
+
/******/ })();
|
|
259
|
+
/******/ }();
|
|
260
|
+
/******/
|
|
128
261
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
129
262
|
/******/ !function() {
|
|
130
263
|
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
@@ -143,8 +276,9 @@ function _defineProperty(obj, key, value) {
|
|
|
143
276
|
/******/
|
|
144
277
|
/************************************************************************/
|
|
145
278
|
var __webpack_exports__ = {};
|
|
146
|
-
// This entry need to be wrapped in an IIFE because it need to be
|
|
279
|
+
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
|
147
280
|
!function() {
|
|
281
|
+
"use strict";
|
|
148
282
|
// ESM COMPAT FLAG
|
|
149
283
|
__webpack_require__.r(__webpack_exports__);
|
|
150
284
|
|
|
@@ -165,6 +299,7 @@ var defineProperty = __webpack_require__(8270);
|
|
|
165
299
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/const-image"
|
|
166
300
|
var const_image_ = __webpack_require__(9702);
|
|
167
301
|
;// CONCATENATED MODULE: ./src/webgl/weathereffect/WeatherEffectViewModel.js
|
|
302
|
+
/* provided dependency */ var console = __webpack_require__(1283);
|
|
168
303
|
|
|
169
304
|
|
|
170
305
|
let _gravityScratch = null;
|
|
@@ -338,7 +473,7 @@ class WeatherEffectViewModel {
|
|
|
338
473
|
var util_ = __webpack_require__(9519);
|
|
339
474
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
340
475
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
341
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/weathereffect/WeatherEffect.vue?vue&type=script&setup=true&lang=js
|
|
476
|
+
;// 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/weathereffect/WeatherEffect.vue?vue&type=script&setup=true&lang=js
|
|
342
477
|
|
|
343
478
|
const _hoisted_1 = {
|
|
344
479
|
class: "kq3d-weather-effect-box"
|
|
@@ -397,9 +532,10 @@ const __default__ = {
|
|
|
397
532
|
}
|
|
398
533
|
},
|
|
399
534
|
|
|
400
|
-
setup(__props, {
|
|
401
|
-
|
|
402
|
-
|
|
535
|
+
setup(__props, _ref) {
|
|
536
|
+
let {
|
|
537
|
+
expose
|
|
538
|
+
} = _ref;
|
|
403
539
|
const props = __props;
|
|
404
540
|
const {
|
|
405
541
|
proxy
|