@kq_npm/client3d_webgl_vue 4.1.3-beta → 4.1.5-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/clientPrint/index.js +354 -7
- package/index.js +375 -15
- package/package.json +1 -1
- package/scenceview/index.js +453 -18
package/scenceview/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/******/ (function() { // webpackBootstrap
|
|
2
|
-
/******/ "use strict";
|
|
3
2
|
/******/ var __webpack_modules__ = ({
|
|
4
3
|
|
|
5
4
|
/***/ 7705:
|
|
6
5
|
/***/ (function(module) {
|
|
7
6
|
|
|
7
|
+
"use strict";
|
|
8
8
|
|
|
9
9
|
/*
|
|
10
10
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
@@ -74,9 +74,343 @@ module.exports = function (cssWithMappingToString) {
|
|
|
74
74
|
|
|
75
75
|
/***/ }),
|
|
76
76
|
|
|
77
|
+
/***/ 3961:
|
|
78
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
79
|
+
|
|
80
|
+
__webpack_require__(4271);
|
|
81
|
+
|
|
82
|
+
!function (e, t) {
|
|
83
|
+
true ? module.exports = t() : 0;
|
|
84
|
+
}(this, function () {
|
|
85
|
+
"use strict";
|
|
86
|
+
|
|
87
|
+
class e {
|
|
88
|
+
constructor(e) {
|
|
89
|
+
this.standards = {
|
|
90
|
+
strict: "strict",
|
|
91
|
+
loose: "loose",
|
|
92
|
+
html5: "html5"
|
|
93
|
+
}, this.previewBody = null, this.close = null, this.previewBodyUtilPrintBtn = null, this.selectArray = [], this.counter = 0, this.settings = {
|
|
94
|
+
standard: this.standards.html5
|
|
95
|
+
}, Object.assign(this.settings, e), this.init();
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
init() {
|
|
99
|
+
this.counter++, this.settings.id = `printArea_${this.counter}`;
|
|
100
|
+
let e = "";
|
|
101
|
+
this.settings.url && !this.settings.asyncUrl && (e = this.settings.url);
|
|
102
|
+
let t = this;
|
|
103
|
+
if (this.settings.asyncUrl) return void t.settings.asyncUrl(function (e) {
|
|
104
|
+
let i = t.getPrintWindow(e);
|
|
105
|
+
t.settings.preview ? t.previewIfrmaeLoad() : t.print(i);
|
|
106
|
+
}, t.settings.vue);
|
|
107
|
+
let i = this.getPrintWindow(e);
|
|
108
|
+
this.settings.url || this.write(i.doc), this.settings.preview ? this.previewIfrmaeLoad() : this.print(i);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
addEvent(e, t, i) {
|
|
112
|
+
e.addEventListener ? e.addEventListener(t, i, !1) : e.attachEvent ? e.attachEvent("on" + t, i) : e["on" + t] = i;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
previewIfrmaeLoad() {
|
|
116
|
+
let e = document.getElementById("vue-pirnt-nb-previewBox");
|
|
117
|
+
|
|
118
|
+
if (e) {
|
|
119
|
+
let t = this,
|
|
120
|
+
i = e.querySelector("iframe");
|
|
121
|
+
this.settings.previewBeforeOpenCallback(), this.addEvent(i, "load", function () {
|
|
122
|
+
t.previewBoxShow(), t.removeCanvasImg(), t.settings.previewOpenCallback();
|
|
123
|
+
}), this.addEvent(e.querySelector(".previewBodyUtilPrintBtn"), "click", function () {
|
|
124
|
+
t.settings.beforeOpenCallback(), t.settings.openCallback(), i.contentWindow.print(), t.settings.closeCallback();
|
|
125
|
+
});
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
removeCanvasImg() {
|
|
130
|
+
let e = this;
|
|
131
|
+
|
|
132
|
+
try {
|
|
133
|
+
if (e.elsdom) {
|
|
134
|
+
let t = e.elsdom.querySelectorAll(".canvasImg");
|
|
135
|
+
|
|
136
|
+
for (let e = 0; e < t.length; e++) t[e].remove();
|
|
137
|
+
}
|
|
138
|
+
} catch (t) {
|
|
139
|
+
console.log(t);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
print(e) {
|
|
144
|
+
var t = this;
|
|
145
|
+
let i = document.getElementById(this.settings.id) || e.f,
|
|
146
|
+
l = document.getElementById(this.settings.id).contentWindow || e.f.contentWindow;
|
|
147
|
+
t.settings.beforeOpenCallback(), t.addEvent(i, "load", function () {
|
|
148
|
+
l.focus(), t.settings.openCallback(), l.print(), i.remove(), t.settings.closeCallback(), t.removeCanvasImg();
|
|
149
|
+
});
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
write(e) {
|
|
153
|
+
e.open(), e.write(`${this.docType()}<html>${this.getHead()}${this.getBody()}</html>`), e.close();
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
docType() {
|
|
157
|
+
return this.settings.standard === this.standards.html5 ? "<!DOCTYPE html>" : `<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01${this.settings.standard === this.standards.loose ? " Transitional" : ""}//EN" "http://www.w3.org/TR/html4/${this.settings.standard === this.standards.loose ? "loose" : "strict"}.dtd">`;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
getHead() {
|
|
161
|
+
let e = "",
|
|
162
|
+
t = "",
|
|
163
|
+
i = "";
|
|
164
|
+
this.settings.extraHead && this.settings.extraHead.replace(/([^,]+)/g, t => {
|
|
165
|
+
e += t;
|
|
166
|
+
}), [].forEach.call(document.querySelectorAll("link"), function (e) {
|
|
167
|
+
e.href.indexOf(".css") >= 0 && (t += `<link type="text/css" rel="stylesheet" href="${e.href}" >`);
|
|
168
|
+
});
|
|
169
|
+
let l = document.styleSheets;
|
|
170
|
+
if (l && l.length > 0) for (let r = 0; r < l.length; r++) try {
|
|
171
|
+
if (l[r].cssRules || l[r].rules) {
|
|
172
|
+
let e = l[r].cssRules || l[r].rules;
|
|
173
|
+
|
|
174
|
+
for (let t = 0; t < e.length; t++) i += e[t].cssText;
|
|
175
|
+
}
|
|
176
|
+
} catch (s) {
|
|
177
|
+
console.log(l[r].href + s);
|
|
178
|
+
}
|
|
179
|
+
return this.settings.extraCss && this.settings.extraCss.replace(/([^,\s]+)/g, e => {
|
|
180
|
+
t += `<link type="text/css" rel="stylesheet" href="${e}">`;
|
|
181
|
+
}), `<head><title>${this.settings.popTitle}</title>${e}${t}<style type="text/css">${i}</style></head>`;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
getBody() {
|
|
185
|
+
let e = this.settings.ids;
|
|
186
|
+
return e = e.replace(new RegExp("#", "g"), ""), this.elsdom = this.beforeHanler(document.getElementById(e)), "<body>" + this.getFormData(this.elsdom).outerHTML + "</body>";
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
beforeHanler(e) {
|
|
190
|
+
let t = e.querySelectorAll("canvas");
|
|
191
|
+
|
|
192
|
+
for (let i = 0; i < t.length; i++) if (!t[i].style.display) {
|
|
193
|
+
let e = t[i].parentNode,
|
|
194
|
+
l = t[i].toDataURL("image/png"),
|
|
195
|
+
s = new Image(); //zl 0822 样式赋值
|
|
196
|
+
|
|
197
|
+
let a = t[i].attributes;
|
|
198
|
+
|
|
199
|
+
for (let z = 0; z < a.length; z++) {
|
|
200
|
+
switch (a[z].name) {
|
|
201
|
+
case 'class':
|
|
202
|
+
s['className'] = a[z].value;
|
|
203
|
+
break;
|
|
204
|
+
|
|
205
|
+
case 'width':
|
|
206
|
+
case 'height':
|
|
207
|
+
s[a[z].name] = a[z].value;
|
|
208
|
+
break;
|
|
209
|
+
|
|
210
|
+
case 'style':
|
|
211
|
+
const styles = a[z].value.split(';');
|
|
212
|
+
|
|
213
|
+
for (let zz = 0; zz < styles.length; zz++) {
|
|
214
|
+
if (styles[zz].trim() === '') continue;
|
|
215
|
+
let ss = styles[zz].split(':'),
|
|
216
|
+
s1 = ss[0].trim(),
|
|
217
|
+
s2 = ss[1].trim();
|
|
218
|
+
s.style[s1] = s2;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
break;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
s.className += " canvasImg", s.style.display = "none", s.src = l, e.appendChild(s);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
return e;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
getFormData(e) {
|
|
232
|
+
let t = e.cloneNode(!0),
|
|
233
|
+
i = t.querySelectorAll("input,select,textarea"),
|
|
234
|
+
l = t.querySelectorAll(".canvasImg,canvas"),
|
|
235
|
+
s = -1;
|
|
236
|
+
|
|
237
|
+
for (let r = 0; r < l.length; r++) {
|
|
238
|
+
let e = l[r].parentNode,
|
|
239
|
+
t = l[r];
|
|
240
|
+
"canvas" === t.tagName.toLowerCase() ? e.removeChild(t) : t.style.display = "block";
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
for (let r = 0; r < i.length; r++) {
|
|
244
|
+
let t = i[r],
|
|
245
|
+
l = t.getAttribute("type"),
|
|
246
|
+
n = i[r];
|
|
247
|
+
if (l || (l = "SELECT" === t.tagName ? "select" : "TEXTAREA" === t.tagName ? "textarea" : ""), "INPUT" === t.tagName) "radio" === l || "checkbox" === l ? t.checked && n.setAttribute("checked", t.checked) : (n.value = t.value, n.setAttribute("value", t.value));else if ("select" === l) {
|
|
248
|
+
s++;
|
|
249
|
+
|
|
250
|
+
for (let i = 0; i < e.querySelectorAll("select").length; i++) {
|
|
251
|
+
let l = e.querySelectorAll("select")[i];
|
|
252
|
+
|
|
253
|
+
if (!l.getAttribute("newbs") && l.setAttribute("newbs", i), l.getAttribute("newbs") == s) {
|
|
254
|
+
let i = e.querySelectorAll("select")[s].selectedIndex;
|
|
255
|
+
t.options[i].setAttribute("selected", !0);
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
} else n.innerHTML = t.value, n.setAttribute("html", t.value);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
return t;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
getPrintWindow(e) {
|
|
265
|
+
var t = this.Iframe(e);
|
|
266
|
+
return {
|
|
267
|
+
f: t,
|
|
268
|
+
win: t.contentWindow || t,
|
|
269
|
+
doc: t.doc
|
|
270
|
+
};
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
previewBoxShow() {
|
|
274
|
+
let e = document.getElementById("vue-pirnt-nb-previewBox");
|
|
275
|
+
e && (document.querySelector("html").setAttribute("style", "overflow: hidden"), e.style.display = "block");
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
previewBoxHide() {
|
|
279
|
+
let e = document.getElementById("vue-pirnt-nb-previewBox");
|
|
280
|
+
e && (document.querySelector("html").setAttribute("style", "overflow: visible;"), e.querySelector("iframe") && e.querySelector("iframe").remove(), e.style.display = "none");
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
previewBox() {
|
|
284
|
+
let e = document.getElementById("vue-pirnt-nb-previewBox"),
|
|
285
|
+
t = "previewBody";
|
|
286
|
+
if (e) return e.querySelector("iframe") && e.querySelector("iframe").remove(), {
|
|
287
|
+
close: e.querySelector(".previewClose"),
|
|
288
|
+
previewBody: e.querySelector(".previewBody")
|
|
289
|
+
};
|
|
290
|
+
let i = document.createElement("div");
|
|
291
|
+
i.setAttribute("id", "vue-pirnt-nb-previewBox"), i.setAttribute("style", "position: fixed;top: 0px;left: 0px;width: 100%;height: 100%;background: white;display:none"), i.style.zIndex = this.settings.zIndex;
|
|
292
|
+
let l = document.createElement("div");
|
|
293
|
+
l.setAttribute("class", "previewHeader"), l.setAttribute("style", "padding: 5px 20px;"), l.innerHTML = this.settings.previewTitle, i.appendChild(l), this.close = document.createElement("div");
|
|
294
|
+
let s = this.close;
|
|
295
|
+
s.setAttribute("class", "previewClose"), s.setAttribute("style", "position: absolute;top: 5px;right: 20px;width: 25px;height: 20px;cursor: pointer;");
|
|
296
|
+
let r = document.createElement("div"),
|
|
297
|
+
n = document.createElement("div");
|
|
298
|
+
r.setAttribute("class", "closeBefore"), r.setAttribute("style", "position: absolute;width: 3px;height: 100%;background: #040404;transform: rotate(45deg); top: 0px;left: 50%;"), n.setAttribute("class", "closeAfter"), n.setAttribute("style", "position: absolute;width: 3px;height: 100%;background: #040404;transform: rotate(-45deg); top: 0px;left: 50%;"), s.appendChild(r), s.appendChild(n), l.appendChild(s), this.previewBody = document.createElement("div");
|
|
299
|
+
let o = this.previewBody;
|
|
300
|
+
o.setAttribute("class", t), o.setAttribute("style", "display: flex;flex-direction: column; height: 100%;"), i.appendChild(o);
|
|
301
|
+
let a = document.createElement("div");
|
|
302
|
+
a.setAttribute("class", "previewBodyUtil"), a.setAttribute("style", "height: 32px;background: #474747;position: relative;"), o.appendChild(a), this.previewBodyUtilPrintBtn = document.createElement("div");
|
|
303
|
+
let d = this.previewBodyUtilPrintBtn;
|
|
304
|
+
return d.setAttribute("class", "previewBodyUtilPrintBtn"), d.innerHTML = this.settings.previewPrintBtnLabel, d.setAttribute("style", "position: absolute;padding: 2px 10px;margin-top: 3px;left: 24px;font-size: 14px;color: white;cursor: pointer;background-color: rgba(0,0,0,.12);background-image: linear-gradient(hsla(0,0%,100%,.05),hsla(0,0%,100%,0));background-clip: padding-box;border: 1px solid rgba(0,0,0,.35);border-color: rgba(0,0,0,.32) rgba(0,0,0,.38) rgba(0,0,0,.42);box-shadow: inset 0 1px 0 hsla(0,0%,100%,.05), inset 0 0 1px hsla(0,0%,100%,.15), 0 1px 0 hsla(0,0%,100%,.05);"), a.appendChild(d), document.body.appendChild(i), {
|
|
305
|
+
close: this.close,
|
|
306
|
+
previewBody: this.previewBody
|
|
307
|
+
};
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
iframeBox(e, t) {
|
|
311
|
+
let i = document.createElement("iframe");
|
|
312
|
+
return i.style.border = "0px", i.style.position = "absolute", i.style.width = "0px", i.style.height = "0px", i.style.right = "0px", i.style.top = "0px", i.setAttribute("id", e), i.setAttribute("src", t), i;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
Iframe(e) {
|
|
316
|
+
let t = this.settings.id;
|
|
317
|
+
e = e || new Date().getTime();
|
|
318
|
+
let i = this,
|
|
319
|
+
l = this.iframeBox(t, e);
|
|
320
|
+
|
|
321
|
+
try {
|
|
322
|
+
if (this.settings.preview) {
|
|
323
|
+
l.setAttribute("style", "border: 0px;flex: 1;");
|
|
324
|
+
let e = this.previewBox(),
|
|
325
|
+
t = e.previewBody,
|
|
326
|
+
s = e.close;
|
|
327
|
+
t.appendChild(l), this.addEvent(s, "click", function () {
|
|
328
|
+
i.previewBoxHide();
|
|
329
|
+
});
|
|
330
|
+
} else document.body.appendChild(l);
|
|
331
|
+
|
|
332
|
+
l.doc = null, l.doc = l.contentDocument ? l.contentDocument : l.contentWindow ? l.contentWindow.document : l.document;
|
|
333
|
+
} catch (s) {
|
|
334
|
+
throw new Error(s + ". iframes may not be supported in this browser.");
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
if (null == l.doc) throw new Error("Cannot find document.");
|
|
338
|
+
return l;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
var t = {
|
|
344
|
+
directiveName: "print",
|
|
345
|
+
|
|
346
|
+
mounted(t, i, l) {
|
|
347
|
+
let s = i.instance,
|
|
348
|
+
r = "";
|
|
349
|
+
var n, o, a;
|
|
350
|
+
o = "click", a = () => {
|
|
351
|
+
if ("string" == typeof i.value) r = i.value;else {
|
|
352
|
+
if ("object" != typeof i.value || !i.value.id) return void window.print();
|
|
353
|
+
{
|
|
354
|
+
r = i.value.id;
|
|
355
|
+
let e = r.replace(new RegExp("#", "g"), "");
|
|
356
|
+
document.getElementById(e) || (console.log("id in Error"), r = "");
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
d();
|
|
360
|
+
}, (n = t).addEventListener ? n.addEventListener(o, a, !1) : n.attachEvent ? n.attachEvent("on" + o, a) : n["on" + o] = a;
|
|
361
|
+
|
|
362
|
+
const d = () => {
|
|
363
|
+
new e({
|
|
364
|
+
ids: r,
|
|
365
|
+
vue: s,
|
|
366
|
+
url: i.value.url,
|
|
367
|
+
standard: "",
|
|
368
|
+
extraHead: i.value.extraHead,
|
|
369
|
+
extraCss: i.value.extraCss,
|
|
370
|
+
zIndex: i.value.zIndex || 20002,
|
|
371
|
+
previewTitle: i.value.previewTitle || "打印预览",
|
|
372
|
+
previewPrintBtnLabel: i.value.previewPrintBtnLabel || "打印",
|
|
373
|
+
popTitle: i.value.popTitle,
|
|
374
|
+
preview: i.value.preview || !1,
|
|
375
|
+
asyncUrl: i.value.asyncUrl,
|
|
376
|
+
|
|
377
|
+
previewBeforeOpenCallback() {
|
|
378
|
+
i.value.previewBeforeOpenCallback && i.value.previewBeforeOpenCallback(s);
|
|
379
|
+
},
|
|
380
|
+
|
|
381
|
+
previewOpenCallback() {
|
|
382
|
+
i.value.previewOpenCallback && i.value.previewOpenCallback(s);
|
|
383
|
+
},
|
|
384
|
+
|
|
385
|
+
openCallback() {
|
|
386
|
+
i.value.openCallback && i.value.openCallback(s);
|
|
387
|
+
},
|
|
388
|
+
|
|
389
|
+
closeCallback() {
|
|
390
|
+
i.value.closeCallback && i.value.closeCallback(s);
|
|
391
|
+
},
|
|
392
|
+
|
|
393
|
+
beforeOpenCallback() {
|
|
394
|
+
i.value.beforeOpenCallback && i.value.beforeOpenCallback(s);
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
});
|
|
398
|
+
};
|
|
399
|
+
},
|
|
400
|
+
|
|
401
|
+
install: function (e) {
|
|
402
|
+
e.directive("print", t);
|
|
403
|
+
}
|
|
404
|
+
};
|
|
405
|
+
return t;
|
|
406
|
+
});
|
|
407
|
+
|
|
408
|
+
/***/ }),
|
|
409
|
+
|
|
77
410
|
/***/ 1349:
|
|
78
411
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
79
412
|
|
|
413
|
+
"use strict";
|
|
80
414
|
/* harmony import */ var element_plus_es__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2442);
|
|
81
415
|
/* harmony import */ var element_plus_es__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(element_plus_es__WEBPACK_IMPORTED_MODULE_0__);
|
|
82
416
|
/* harmony import */ var _init__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(5406);
|
|
@@ -96,6 +430,7 @@ element_plus_es__WEBPACK_IMPORTED_MODULE_0__.ElMessage.install = (Vue, opts) =>
|
|
|
96
430
|
/***/ 5110:
|
|
97
431
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
98
432
|
|
|
433
|
+
"use strict";
|
|
99
434
|
|
|
100
435
|
// EXPORTS
|
|
101
436
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -2251,6 +2586,7 @@ AddData.install = (Vue, opts) => {
|
|
|
2251
2586
|
/***/ 6776:
|
|
2252
2587
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2253
2588
|
|
|
2589
|
+
"use strict";
|
|
2254
2590
|
|
|
2255
2591
|
// EXPORTS
|
|
2256
2592
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -2817,6 +3153,7 @@ AspectAnalysis.install = (Vue, opts) => {
|
|
|
2817
3153
|
/***/ 2109:
|
|
2818
3154
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2819
3155
|
|
|
3156
|
+
"use strict";
|
|
2820
3157
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2821
3158
|
/* harmony export */ "Z": function() { return /* binding */ BaseterrainGalleryViewModel; }
|
|
2822
3159
|
/* harmony export */ });
|
|
@@ -2897,6 +3234,7 @@ class BaseterrainGalleryViewModel {
|
|
|
2897
3234
|
/***/ 7467:
|
|
2898
3235
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2899
3236
|
|
|
3237
|
+
"use strict";
|
|
2900
3238
|
|
|
2901
3239
|
// EXPORTS
|
|
2902
3240
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -3222,6 +3560,7 @@ BaseterrainGallery.install = (Vue, opts) => {
|
|
|
3222
3560
|
/***/ 4510:
|
|
3223
3561
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3224
3562
|
|
|
3563
|
+
"use strict";
|
|
3225
3564
|
|
|
3226
3565
|
// EXPORTS
|
|
3227
3566
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -4358,9 +4697,10 @@ BoxClip.install = (Vue, opts) => {
|
|
|
4358
4697
|
|
|
4359
4698
|
/***/ }),
|
|
4360
4699
|
|
|
4361
|
-
/***/
|
|
4700
|
+
/***/ 6788:
|
|
4362
4701
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4363
4702
|
|
|
4703
|
+
"use strict";
|
|
4364
4704
|
|
|
4365
4705
|
// EXPORTS
|
|
4366
4706
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -4376,9 +4716,9 @@ var external_html2canvas_namespaceObject = require("html2canvas");
|
|
|
4376
4716
|
var external_html2canvas_default = /*#__PURE__*/__webpack_require__.n(external_html2canvas_namespaceObject);
|
|
4377
4717
|
// EXTERNAL MODULE: external "@element-plus/icons-vue"
|
|
4378
4718
|
var icons_vue_ = __webpack_require__(8422);
|
|
4379
|
-
|
|
4380
|
-
var
|
|
4381
|
-
var
|
|
4719
|
+
// EXTERNAL MODULE: ./public/libs/kqwebclient/leaflet/3rd-libs/vue3-print-nb/vue3-print-nb.umd.js
|
|
4720
|
+
var vue3_print_nb_umd = __webpack_require__(3961);
|
|
4721
|
+
var vue3_print_nb_umd_default = /*#__PURE__*/__webpack_require__.n(vue3_print_nb_umd);
|
|
4382
4722
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_types/global-event"
|
|
4383
4723
|
var global_event_ = __webpack_require__(1088);
|
|
4384
4724
|
var global_event_default = /*#__PURE__*/__webpack_require__.n(global_event_);
|
|
@@ -5765,7 +6105,7 @@ const __default__ = {
|
|
|
5765
6105
|
|
|
5766
6106
|
}, 8
|
|
5767
6107
|
/* PROPS */
|
|
5768
|
-
, ["loading"])), [[(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)((
|
|
6108
|
+
, ["loading"])), [[(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)((vue3_print_nb_umd_default())), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printObj)]])])]),
|
|
5769
6109
|
_: 1
|
|
5770
6110
|
/* STABLE */
|
|
5771
6111
|
|
|
@@ -6471,6 +6811,7 @@ ClientPrint.install = (Vue, opts) => {
|
|
|
6471
6811
|
/***/ 6938:
|
|
6472
6812
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6473
6813
|
|
|
6814
|
+
"use strict";
|
|
6474
6815
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6475
6816
|
/* harmony export */ "Z": function() { return /* binding */ CompareMapViewModel; }
|
|
6476
6817
|
/* harmony export */ });
|
|
@@ -6599,6 +6940,7 @@ class CompareMapViewModel {
|
|
|
6599
6940
|
/***/ 1670:
|
|
6600
6941
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6601
6942
|
|
|
6943
|
+
"use strict";
|
|
6602
6944
|
|
|
6603
6945
|
// EXPORTS
|
|
6604
6946
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -6971,6 +7313,7 @@ CompareMap.install = (Vue, opts) => {
|
|
|
6971
7313
|
/***/ 9520:
|
|
6972
7314
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6973
7315
|
|
|
7316
|
+
"use strict";
|
|
6974
7317
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6975
7318
|
/* harmony export */ "Z": function() { return /* binding */ CompassViewModel; }
|
|
6976
7319
|
/* harmony export */ });
|
|
@@ -7040,6 +7383,7 @@ class CompassViewModel {
|
|
|
7040
7383
|
/***/ 8253:
|
|
7041
7384
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7042
7385
|
|
|
7386
|
+
"use strict";
|
|
7043
7387
|
|
|
7044
7388
|
// EXPORTS
|
|
7045
7389
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -7183,6 +7527,7 @@ Compass.install = (Vue, opts) => {
|
|
|
7183
7527
|
/***/ 7739:
|
|
7184
7528
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7185
7529
|
|
|
7530
|
+
"use strict";
|
|
7186
7531
|
|
|
7187
7532
|
// EXPORTS
|
|
7188
7533
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -7839,6 +8184,7 @@ ExcavateFillAnalysis.install = (Vue, opts) => {
|
|
|
7839
8184
|
/***/ 7216:
|
|
7840
8185
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7841
8186
|
|
|
8187
|
+
"use strict";
|
|
7842
8188
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7843
8189
|
/* harmony export */ "Z": function() { return /* binding */ FixedZoomin3dViewModel; }
|
|
7844
8190
|
/* harmony export */ });
|
|
@@ -7915,6 +8261,7 @@ class FixedZoomin3dViewModel {
|
|
|
7915
8261
|
/***/ 9579:
|
|
7916
8262
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7917
8263
|
|
|
8264
|
+
"use strict";
|
|
7918
8265
|
|
|
7919
8266
|
// EXPORTS
|
|
7920
8267
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -8049,6 +8396,7 @@ FixedZoomin.install = (Vue, opts) => {
|
|
|
8049
8396
|
/***/ 8800:
|
|
8050
8397
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8051
8398
|
|
|
8399
|
+
"use strict";
|
|
8052
8400
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8053
8401
|
/* harmony export */ "Z": function() { return /* binding */ FixedZoomout3dViewModel; }
|
|
8054
8402
|
/* harmony export */ });
|
|
@@ -8125,6 +8473,7 @@ class FixedZoomout3dViewModel {
|
|
|
8125
8473
|
/***/ 5937:
|
|
8126
8474
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8127
8475
|
|
|
8476
|
+
"use strict";
|
|
8128
8477
|
|
|
8129
8478
|
// EXPORTS
|
|
8130
8479
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -8259,6 +8608,7 @@ FixedZoomout.install = (Vue, opts) => {
|
|
|
8259
8608
|
/***/ 5372:
|
|
8260
8609
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8261
8610
|
|
|
8611
|
+
"use strict";
|
|
8262
8612
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8263
8613
|
/* harmony export */ "Z": function() { return /* binding */ FlightViewModel; }
|
|
8264
8614
|
/* harmony export */ });
|
|
@@ -8374,6 +8724,7 @@ class FlightViewModel {
|
|
|
8374
8724
|
/***/ 224:
|
|
8375
8725
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8376
8726
|
|
|
8727
|
+
"use strict";
|
|
8377
8728
|
|
|
8378
8729
|
// EXPORTS
|
|
8379
8730
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -9353,6 +9704,7 @@ Flight.install = (Vue, opts) => {
|
|
|
9353
9704
|
/***/ 3527:
|
|
9354
9705
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
9355
9706
|
|
|
9707
|
+
"use strict";
|
|
9356
9708
|
|
|
9357
9709
|
// EXPORTS
|
|
9358
9710
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -10331,6 +10683,7 @@ FloodAnalysis.install = (Vue, opts) => {
|
|
|
10331
10683
|
/***/ 9378:
|
|
10332
10684
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
10333
10685
|
|
|
10686
|
+
"use strict";
|
|
10334
10687
|
|
|
10335
10688
|
// EXPORTS
|
|
10336
10689
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -11066,6 +11419,7 @@ GeologicalBodyAnalysis.install = (Vue, opts) => {
|
|
|
11066
11419
|
/***/ 7719:
|
|
11067
11420
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
11068
11421
|
|
|
11422
|
+
"use strict";
|
|
11069
11423
|
|
|
11070
11424
|
// EXPORTS
|
|
11071
11425
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -12063,6 +12417,7 @@ GPUSpatialQuery.install = (Vue, opts) => {
|
|
|
12063
12417
|
/***/ 1162:
|
|
12064
12418
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12065
12419
|
|
|
12420
|
+
"use strict";
|
|
12066
12421
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12067
12422
|
/* harmony export */ "Z": function() { return /* binding */ HawkeyeViewModel; }
|
|
12068
12423
|
/* harmony export */ });
|
|
@@ -12118,6 +12473,7 @@ class HawkeyeViewModel {
|
|
|
12118
12473
|
/***/ 7686:
|
|
12119
12474
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12120
12475
|
|
|
12476
|
+
"use strict";
|
|
12121
12477
|
|
|
12122
12478
|
// EXPORTS
|
|
12123
12479
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -12253,6 +12609,7 @@ Hawkeye.install = (Vue, opts) => {
|
|
|
12253
12609
|
/***/ 9783:
|
|
12254
12610
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12255
12611
|
|
|
12612
|
+
"use strict";
|
|
12256
12613
|
|
|
12257
12614
|
// EXPORTS
|
|
12258
12615
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -14907,6 +15264,7 @@ IsolineAnalysis.install = (Vue, opts) => {
|
|
|
14907
15264
|
/***/ 2257:
|
|
14908
15265
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14909
15266
|
|
|
15267
|
+
"use strict";
|
|
14910
15268
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14911
15269
|
/* harmony export */ "Z": function() { return /* binding */ LightViewModel; }
|
|
14912
15270
|
/* harmony export */ });
|
|
@@ -15170,6 +15528,7 @@ class LightViewModel {
|
|
|
15170
15528
|
/***/ 9001:
|
|
15171
15529
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15172
15530
|
|
|
15531
|
+
"use strict";
|
|
15173
15532
|
|
|
15174
15533
|
// EXPORTS
|
|
15175
15534
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -15835,6 +16194,7 @@ Light.install = (Vue, opts) => {
|
|
|
15835
16194
|
/***/ 1769:
|
|
15836
16195
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15837
16196
|
|
|
16197
|
+
"use strict";
|
|
15838
16198
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15839
16199
|
/* harmony export */ "Z": function() { return /* binding */ LimitHeightAnalysisViewModel; }
|
|
15840
16200
|
/* harmony export */ });
|
|
@@ -15958,6 +16318,7 @@ class LimitHeightAnalysisViewModel {
|
|
|
15958
16318
|
/***/ 5551:
|
|
15959
16319
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15960
16320
|
|
|
16321
|
+
"use strict";
|
|
15961
16322
|
|
|
15962
16323
|
// EXPORTS
|
|
15963
16324
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -16449,6 +16810,7 @@ LimitHeightAnalysis.install = (Vue, opts) => {
|
|
|
16449
16810
|
/***/ 193:
|
|
16450
16811
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16451
16812
|
|
|
16813
|
+
"use strict";
|
|
16452
16814
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16453
16815
|
/* harmony export */ "Z": function() { return /* binding */ MeasureViewModel; }
|
|
16454
16816
|
/* harmony export */ });
|
|
@@ -16625,6 +16987,7 @@ class MeasureViewModel {
|
|
|
16625
16987
|
/***/ 919:
|
|
16626
16988
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16627
16989
|
|
|
16990
|
+
"use strict";
|
|
16628
16991
|
|
|
16629
16992
|
// EXPORTS
|
|
16630
16993
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -17366,6 +17729,7 @@ Measure.install = (Vue, opts) => {
|
|
|
17366
17729
|
/***/ 1677:
|
|
17367
17730
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
17368
17731
|
|
|
17732
|
+
"use strict";
|
|
17369
17733
|
|
|
17370
17734
|
// EXPORTS
|
|
17371
17735
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -17935,6 +18299,7 @@ ModelExcavate.install = (Vue, opts) => {
|
|
|
17935
18299
|
/***/ 435:
|
|
17936
18300
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
17937
18301
|
|
|
18302
|
+
"use strict";
|
|
17938
18303
|
|
|
17939
18304
|
// EXPORTS
|
|
17940
18305
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -18683,6 +19048,7 @@ ModelFilter.install = (Vue, opts) => {
|
|
|
18683
19048
|
/***/ 9166:
|
|
18684
19049
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
18685
19050
|
|
|
19051
|
+
"use strict";
|
|
18686
19052
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
18687
19053
|
/* harmony export */ "Z": function() { return /* binding */ ModelProfileAnalysisViewModel; }
|
|
18688
19054
|
/* harmony export */ });
|
|
@@ -18954,6 +19320,7 @@ class ModelProfileAnalysisViewModel {
|
|
|
18954
19320
|
/***/ 3750:
|
|
18955
19321
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
18956
19322
|
|
|
19323
|
+
"use strict";
|
|
18957
19324
|
|
|
18958
19325
|
// EXPORTS
|
|
18959
19326
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -19553,6 +19920,7 @@ ModelProfileAnalysis.install = (Vue, opts) => {
|
|
|
19553
19920
|
/***/ 9089:
|
|
19554
19921
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
19555
19922
|
|
|
19923
|
+
"use strict";
|
|
19556
19924
|
|
|
19557
19925
|
// EXPORTS
|
|
19558
19926
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -20021,6 +20389,7 @@ ModelSelect.install = (Vue, opts) => {
|
|
|
20021
20389
|
/***/ 828:
|
|
20022
20390
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
20023
20391
|
|
|
20392
|
+
"use strict";
|
|
20024
20393
|
|
|
20025
20394
|
// EXPORTS
|
|
20026
20395
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -21144,6 +21513,7 @@ ParticleEffect.install = (Vue, opts) => {
|
|
|
21144
21513
|
/***/ 9736:
|
|
21145
21514
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
21146
21515
|
|
|
21516
|
+
"use strict";
|
|
21147
21517
|
|
|
21148
21518
|
// EXPORTS
|
|
21149
21519
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -21943,6 +22313,7 @@ PlaneClip.install = (Vue, opts) => {
|
|
|
21943
22313
|
/***/ 2242:
|
|
21944
22314
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
21945
22315
|
|
|
22316
|
+
"use strict";
|
|
21946
22317
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21947
22318
|
/* harmony export */ "Z": function() { return /* binding */ ResetViewViewModel; }
|
|
21948
22319
|
/* harmony export */ });
|
|
@@ -21969,6 +22340,7 @@ class ResetViewViewModel {
|
|
|
21969
22340
|
/***/ 9436:
|
|
21970
22341
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
21971
22342
|
|
|
22343
|
+
"use strict";
|
|
21972
22344
|
|
|
21973
22345
|
// EXPORTS
|
|
21974
22346
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -22103,6 +22475,7 @@ ResetView.install = (Vue, opts) => {
|
|
|
22103
22475
|
/***/ 6561:
|
|
22104
22476
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
22105
22477
|
|
|
22478
|
+
"use strict";
|
|
22106
22479
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22107
22480
|
/* harmony export */ "Z": function() { return /* binding */ RollerViewModel; }
|
|
22108
22481
|
/* harmony export */ });
|
|
@@ -22315,6 +22688,7 @@ class RollerViewModel {
|
|
|
22315
22688
|
/***/ 1871:
|
|
22316
22689
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
22317
22690
|
|
|
22691
|
+
"use strict";
|
|
22318
22692
|
|
|
22319
22693
|
// EXPORTS
|
|
22320
22694
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -22717,6 +23091,7 @@ Roller.install = (Vue, opts) => {
|
|
|
22717
23091
|
/***/ 7584:
|
|
22718
23092
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
22719
23093
|
|
|
23094
|
+
"use strict";
|
|
22720
23095
|
|
|
22721
23096
|
// EXPORTS
|
|
22722
23097
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -24275,6 +24650,7 @@ ScanEffect.install = (Vue, opts) => {
|
|
|
24275
24650
|
/***/ 8876:
|
|
24276
24651
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
24277
24652
|
|
|
24653
|
+
"use strict";
|
|
24278
24654
|
|
|
24279
24655
|
// EXPORTS
|
|
24280
24656
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -26251,6 +26627,7 @@ SceneSet.install = (Vue, opts) => {
|
|
|
26251
26627
|
/***/ 1248:
|
|
26252
26628
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
26253
26629
|
|
|
26630
|
+
"use strict";
|
|
26254
26631
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
26255
26632
|
/* harmony export */ "Z": function() { return /* binding */ ScreenshotViewModel; }
|
|
26256
26633
|
/* harmony export */ });
|
|
@@ -26407,6 +26784,7 @@ class ScreenshotViewModel {
|
|
|
26407
26784
|
/***/ 7874:
|
|
26408
26785
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
26409
26786
|
|
|
26787
|
+
"use strict";
|
|
26410
26788
|
|
|
26411
26789
|
// EXPORTS
|
|
26412
26790
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -26841,6 +27219,7 @@ Screenshot.install = (Vue, opts) => {
|
|
|
26841
27219
|
/***/ 8449:
|
|
26842
27220
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
26843
27221
|
|
|
27222
|
+
"use strict";
|
|
26844
27223
|
|
|
26845
27224
|
// EXPORTS
|
|
26846
27225
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -28001,6 +28380,7 @@ ShadowAnalysis.install = (Vue, opts) => {
|
|
|
28001
28380
|
/***/ 6031:
|
|
28002
28381
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
28003
28382
|
|
|
28383
|
+
"use strict";
|
|
28004
28384
|
|
|
28005
28385
|
// EXPORTS
|
|
28006
28386
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -28737,6 +29117,7 @@ SightlineAnalysis.install = (Vue, opts) => {
|
|
|
28737
29117
|
/***/ 421:
|
|
28738
29118
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
28739
29119
|
|
|
29120
|
+
"use strict";
|
|
28740
29121
|
|
|
28741
29122
|
// EXPORTS
|
|
28742
29123
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -29663,6 +30044,7 @@ SkylineAnalysis.install = (Vue, opts) => {
|
|
|
29663
30044
|
/***/ 7668:
|
|
29664
30045
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
29665
30046
|
|
|
30047
|
+
"use strict";
|
|
29666
30048
|
|
|
29667
30049
|
// EXPORTS
|
|
29668
30050
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -30786,6 +31168,7 @@ SlopeAnalysis.install = (Vue, opts) => {
|
|
|
30786
31168
|
/***/ 6311:
|
|
30787
31169
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
30788
31170
|
|
|
31171
|
+
"use strict";
|
|
30789
31172
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
30790
31173
|
/* harmony export */ "Z": function() { return /* binding */ StatusBarViewModel; }
|
|
30791
31174
|
/* harmony export */ });
|
|
@@ -30885,6 +31268,7 @@ class StatusBarViewModel {
|
|
|
30885
31268
|
/***/ 4388:
|
|
30886
31269
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
30887
31270
|
|
|
31271
|
+
"use strict";
|
|
30888
31272
|
|
|
30889
31273
|
// EXPORTS
|
|
30890
31274
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -31013,6 +31397,7 @@ StatusBar.install = (Vue, opts) => {
|
|
|
31013
31397
|
/***/ 2686:
|
|
31014
31398
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
31015
31399
|
|
|
31400
|
+
"use strict";
|
|
31016
31401
|
|
|
31017
31402
|
// EXPORTS
|
|
31018
31403
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -31608,6 +31993,7 @@ TerrainOperation.install = (Vue, opts) => {
|
|
|
31608
31993
|
/***/ 7649:
|
|
31609
31994
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
31610
31995
|
|
|
31996
|
+
"use strict";
|
|
31611
31997
|
|
|
31612
31998
|
// EXPORTS
|
|
31613
31999
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -32063,6 +32449,7 @@ TerrainProfileAnalysis.install = (Vue, opts) => {
|
|
|
32063
32449
|
/***/ 7656:
|
|
32064
32450
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
32065
32451
|
|
|
32452
|
+
"use strict";
|
|
32066
32453
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
32067
32454
|
/* harmony export */ "Z": function() { return /* binding */ UndergroundViewModel; }
|
|
32068
32455
|
/* harmony export */ });
|
|
@@ -32124,6 +32511,7 @@ class UndergroundViewModel {
|
|
|
32124
32511
|
/***/ 8521:
|
|
32125
32512
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
32126
32513
|
|
|
32514
|
+
"use strict";
|
|
32127
32515
|
|
|
32128
32516
|
// EXPORTS
|
|
32129
32517
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -32279,6 +32667,7 @@ Underground.install = (Vue, opts) => {
|
|
|
32279
32667
|
/***/ 2627:
|
|
32280
32668
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
32281
32669
|
|
|
32670
|
+
"use strict";
|
|
32282
32671
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
32283
32672
|
/* harmony export */ "Z": function() { return /* binding */ VideoFusiontViewModel; }
|
|
32284
32673
|
/* harmony export */ });
|
|
@@ -32493,6 +32882,7 @@ class VideoFusiontViewModel {
|
|
|
32493
32882
|
/***/ 7942:
|
|
32494
32883
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
32495
32884
|
|
|
32885
|
+
"use strict";
|
|
32496
32886
|
|
|
32497
32887
|
// EXPORTS
|
|
32498
32888
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -33597,6 +33987,7 @@ VideoFusion.install = (Vue, opts) => {
|
|
|
33597
33987
|
/***/ 3033:
|
|
33598
33988
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
33599
33989
|
|
|
33990
|
+
"use strict";
|
|
33600
33991
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
33601
33992
|
/* harmony export */ "Z": function() { return /* binding */ VideoProjectViewModel; }
|
|
33602
33993
|
/* harmony export */ });
|
|
@@ -33787,6 +34178,7 @@ class VideoProjectViewModel {
|
|
|
33787
34178
|
/***/ 7413:
|
|
33788
34179
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
33789
34180
|
|
|
34181
|
+
"use strict";
|
|
33790
34182
|
|
|
33791
34183
|
// EXPORTS
|
|
33792
34184
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -34898,6 +35290,7 @@ VideoProject.install = (Vue, opts) => {
|
|
|
34898
35290
|
/***/ 2612:
|
|
34899
35291
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
34900
35292
|
|
|
35293
|
+
"use strict";
|
|
34901
35294
|
|
|
34902
35295
|
// EXPORTS
|
|
34903
35296
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -35592,6 +35985,7 @@ ViewshedAnalysis.install = (Vue, opts) => {
|
|
|
35592
35985
|
/***/ 5108:
|
|
35593
35986
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
35594
35987
|
|
|
35988
|
+
"use strict";
|
|
35595
35989
|
|
|
35596
35990
|
// EXPORTS
|
|
35597
35991
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -36480,6 +36874,7 @@ WeatherEffect.install = (Vue, opts) => {
|
|
|
36480
36874
|
/***/ 4686:
|
|
36481
36875
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
36482
36876
|
|
|
36877
|
+
"use strict";
|
|
36483
36878
|
|
|
36484
36879
|
// EXPORTS
|
|
36485
36880
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -36836,6 +37231,7 @@ WireframeSketch.install = (Vue, opts) => {
|
|
|
36836
37231
|
/***/ 6868:
|
|
36837
37232
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
36838
37233
|
|
|
37234
|
+
"use strict";
|
|
36839
37235
|
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7705);
|
|
36840
37236
|
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
36841
37237
|
// Imports
|
|
@@ -36852,6 +37248,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".coord-sightline{background:rgba(42,42
|
|
|
36852
37248
|
/***/ 3825:
|
|
36853
37249
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
36854
37250
|
|
|
37251
|
+
"use strict";
|
|
36855
37252
|
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7705);
|
|
36856
37253
|
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
36857
37254
|
// Imports
|
|
@@ -36868,6 +37265,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".cesium-performanceDisplay-defaultCont
|
|
|
36868
37265
|
/***/ 6854:
|
|
36869
37266
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
36870
37267
|
|
|
37268
|
+
"use strict";
|
|
36871
37269
|
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7705);
|
|
36872
37270
|
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
36873
37271
|
// Imports
|
|
@@ -36884,6 +37282,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".cesium-viewer-bottom{right:0px !impor
|
|
|
36884
37282
|
/***/ 3379:
|
|
36885
37283
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
36886
37284
|
|
|
37285
|
+
"use strict";
|
|
36887
37286
|
|
|
36888
37287
|
|
|
36889
37288
|
var isOldIE = function isOldIE() {
|
|
@@ -37159,6 +37558,7 @@ module.exports = function (list, options) {
|
|
|
37159
37558
|
/***/ 8422:
|
|
37160
37559
|
/***/ (function(module) {
|
|
37161
37560
|
|
|
37561
|
+
"use strict";
|
|
37162
37562
|
module.exports = require("@element-plus/icons-vue");
|
|
37163
37563
|
|
|
37164
37564
|
/***/ }),
|
|
@@ -37166,6 +37566,7 @@ module.exports = require("@element-plus/icons-vue");
|
|
|
37166
37566
|
/***/ 348:
|
|
37167
37567
|
/***/ (function(module) {
|
|
37168
37568
|
|
|
37569
|
+
"use strict";
|
|
37169
37570
|
module.exports = require("@kq_npm/client_icons_vue");
|
|
37170
37571
|
|
|
37171
37572
|
/***/ }),
|
|
@@ -37173,13 +37574,23 @@ module.exports = require("@kq_npm/client_icons_vue");
|
|
|
37173
37574
|
/***/ 3600:
|
|
37174
37575
|
/***/ (function(module) {
|
|
37175
37576
|
|
|
37577
|
+
"use strict";
|
|
37176
37578
|
module.exports = require("core-js/modules/es.array.includes.js");
|
|
37177
37579
|
|
|
37178
37580
|
/***/ }),
|
|
37179
37581
|
|
|
37582
|
+
/***/ 4271:
|
|
37583
|
+
/***/ (function(module) {
|
|
37584
|
+
|
|
37585
|
+
"use strict";
|
|
37586
|
+
module.exports = require("core-js/modules/es.error.cause.js");
|
|
37587
|
+
|
|
37588
|
+
/***/ }),
|
|
37589
|
+
|
|
37180
37590
|
/***/ 2442:
|
|
37181
37591
|
/***/ (function(module) {
|
|
37182
37592
|
|
|
37593
|
+
"use strict";
|
|
37183
37594
|
module.exports = require("element-plus/es");
|
|
37184
37595
|
|
|
37185
37596
|
/***/ }),
|
|
@@ -37187,6 +37598,7 @@ module.exports = require("element-plus/es");
|
|
|
37187
37598
|
/***/ 7080:
|
|
37188
37599
|
/***/ (function(module) {
|
|
37189
37600
|
|
|
37601
|
+
"use strict";
|
|
37190
37602
|
module.exports = require("vue-i18n/dist/vue-i18n.cjs.js");
|
|
37191
37603
|
|
|
37192
37604
|
/***/ }),
|
|
@@ -37194,6 +37606,7 @@ module.exports = require("vue-i18n/dist/vue-i18n.cjs.js");
|
|
|
37194
37606
|
/***/ 1088:
|
|
37195
37607
|
/***/ (function(module) {
|
|
37196
37608
|
|
|
37609
|
+
"use strict";
|
|
37197
37610
|
module.exports = require("@kq_npm/client_common_vue/_types/global-event");
|
|
37198
37611
|
|
|
37199
37612
|
/***/ }),
|
|
@@ -37201,6 +37614,7 @@ module.exports = require("@kq_npm/client_common_vue/_types/global-event");
|
|
|
37201
37614
|
/***/ 9702:
|
|
37202
37615
|
/***/ (function(module) {
|
|
37203
37616
|
|
|
37617
|
+
"use strict";
|
|
37204
37618
|
module.exports = require("@kq_npm/client_common_vue/_utils/const-image");
|
|
37205
37619
|
|
|
37206
37620
|
/***/ }),
|
|
@@ -37208,6 +37622,7 @@ module.exports = require("@kq_npm/client_common_vue/_utils/const-image");
|
|
|
37208
37622
|
/***/ 826:
|
|
37209
37623
|
/***/ (function(module) {
|
|
37210
37624
|
|
|
37625
|
+
"use strict";
|
|
37211
37626
|
module.exports = require("@kq_npm/client_common_vue/_utils/gis-utils");
|
|
37212
37627
|
|
|
37213
37628
|
/***/ }),
|
|
@@ -37215,6 +37630,7 @@ module.exports = require("@kq_npm/client_common_vue/_utils/gis-utils");
|
|
|
37215
37630
|
/***/ 9519:
|
|
37216
37631
|
/***/ (function(module) {
|
|
37217
37632
|
|
|
37633
|
+
"use strict";
|
|
37218
37634
|
module.exports = require("@kq_npm/client_common_vue/_utils/util");
|
|
37219
37635
|
|
|
37220
37636
|
/***/ }),
|
|
@@ -37222,6 +37638,7 @@ module.exports = require("@kq_npm/client_common_vue/_utils/util");
|
|
|
37222
37638
|
/***/ 5360:
|
|
37223
37639
|
/***/ (function(module) {
|
|
37224
37640
|
|
|
37641
|
+
"use strict";
|
|
37225
37642
|
module.exports = require("@kq_npm/client_common_vue/_utils/webmapservice");
|
|
37226
37643
|
|
|
37227
37644
|
/***/ }),
|
|
@@ -37229,6 +37646,7 @@ module.exports = require("@kq_npm/client_common_vue/_utils/webmapservice");
|
|
|
37229
37646
|
/***/ 5406:
|
|
37230
37647
|
/***/ (function(module) {
|
|
37231
37648
|
|
|
37649
|
+
"use strict";
|
|
37232
37650
|
module.exports = require("@kq_npm/client_common_vue/init.js");
|
|
37233
37651
|
|
|
37234
37652
|
/***/ }),
|
|
@@ -37236,6 +37654,7 @@ module.exports = require("@kq_npm/client_common_vue/init.js");
|
|
|
37236
37654
|
/***/ 637:
|
|
37237
37655
|
/***/ (function(module) {
|
|
37238
37656
|
|
|
37657
|
+
"use strict";
|
|
37239
37658
|
module.exports = require("vue");
|
|
37240
37659
|
|
|
37241
37660
|
/***/ }),
|
|
@@ -37243,6 +37662,7 @@ module.exports = require("vue");
|
|
|
37243
37662
|
/***/ 8270:
|
|
37244
37663
|
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
37245
37664
|
|
|
37665
|
+
"use strict";
|
|
37246
37666
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
37247
37667
|
/* harmony export */ "Z": function() { return /* binding */ _defineProperty; }
|
|
37248
37668
|
/* harmony export */ });
|
|
@@ -37283,7 +37703,7 @@ function _defineProperty(obj, key, value) {
|
|
|
37283
37703
|
/******/ };
|
|
37284
37704
|
/******/
|
|
37285
37705
|
/******/ // Execute the module function
|
|
37286
|
-
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
37706
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
37287
37707
|
/******/
|
|
37288
37708
|
/******/ // Return the exports of the module
|
|
37289
37709
|
/******/ return module.exports;
|
|
@@ -37337,8 +37757,9 @@ function _defineProperty(obj, key, value) {
|
|
|
37337
37757
|
/******/
|
|
37338
37758
|
/************************************************************************/
|
|
37339
37759
|
var __webpack_exports__ = {};
|
|
37340
|
-
// This entry need to be wrapped in an IIFE because it need to be
|
|
37760
|
+
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
|
37341
37761
|
!function() {
|
|
37762
|
+
"use strict";
|
|
37342
37763
|
// ESM COMPAT FLAG
|
|
37343
37764
|
__webpack_require__.r(__webpack_exports__);
|
|
37344
37765
|
|
|
@@ -37358,8 +37779,8 @@ var fixedzoomin = __webpack_require__(9579);
|
|
|
37358
37779
|
var resetview = __webpack_require__(9436);
|
|
37359
37780
|
// EXTERNAL MODULE: ./src/webgl/compass/index.js + 3 modules
|
|
37360
37781
|
var compass = __webpack_require__(8253);
|
|
37361
|
-
// EXTERNAL MODULE: ./src/webgl/clientPrint/index.js +
|
|
37362
|
-
var clientPrint = __webpack_require__(
|
|
37782
|
+
// EXTERNAL MODULE: ./src/webgl/clientPrint/index.js + 4 modules
|
|
37783
|
+
var clientPrint = __webpack_require__(6788);
|
|
37363
37784
|
// EXTERNAL MODULE: ./src/webgl/baseterraingallery/index.js + 3 modules
|
|
37364
37785
|
var baseterraingallery = __webpack_require__(7467);
|
|
37365
37786
|
// EXTERNAL MODULE: ./src/webgl/measure/index.js + 3 modules
|
|
@@ -39084,15 +39505,12 @@ class LayerManager {
|
|
|
39084
39505
|
var type = layerData.renderType;
|
|
39085
39506
|
|
|
39086
39507
|
if (layerData.sourceType === "kqserver") {
|
|
39508
|
+
if (source.token && layerData.url.indexOf("ua_token") < 0) {
|
|
39509
|
+
layerData.url += "?ua_token=" + source.token;
|
|
39510
|
+
}
|
|
39511
|
+
|
|
39087
39512
|
if (!layerData.renderType || layerData.renderType === "rest") {
|
|
39088
39513
|
type = "kqgismapserver";
|
|
39089
|
-
layerData.token = source.token;
|
|
39090
|
-
} else {
|
|
39091
|
-
layerData.url += "/" + layerData.renderType;
|
|
39092
|
-
|
|
39093
|
-
if (source.token) {
|
|
39094
|
-
layerData.url += "?ua_token=" + source.token;
|
|
39095
|
-
}
|
|
39096
39514
|
} //记录数据源里所有图层信息
|
|
39097
39515
|
|
|
39098
39516
|
|
|
@@ -39131,6 +39549,19 @@ class LayerManager {
|
|
|
39131
39549
|
}
|
|
39132
39550
|
}
|
|
39133
39551
|
}
|
|
39552
|
+
} // URL追加接口
|
|
39553
|
+
|
|
39554
|
+
|
|
39555
|
+
_urlAppendInterface(url, interfaceName) {
|
|
39556
|
+
let newUrl = url;
|
|
39557
|
+
|
|
39558
|
+
if (url.indexOf('?') > 0) {
|
|
39559
|
+
newUrl = url.replace("?", "/" + interfaceName + "?");
|
|
39560
|
+
} else {
|
|
39561
|
+
newUrl += "/" + interfaceName;
|
|
39562
|
+
}
|
|
39563
|
+
|
|
39564
|
+
return newUrl;
|
|
39134
39565
|
} //添加图层数据
|
|
39135
39566
|
|
|
39136
39567
|
|
|
@@ -39466,6 +39897,8 @@ class LayerManager {
|
|
|
39466
39897
|
}
|
|
39467
39898
|
}
|
|
39468
39899
|
}
|
|
39900
|
+
|
|
39901
|
+
url = this._urlAppendInterface(url, "wms");
|
|
39469
39902
|
}
|
|
39470
39903
|
|
|
39471
39904
|
layerData.visible = isAdd;
|
|
@@ -39506,6 +39939,8 @@ class LayerManager {
|
|
|
39506
39939
|
}
|
|
39507
39940
|
}
|
|
39508
39941
|
}
|
|
39942
|
+
|
|
39943
|
+
url = this._urlAppendInterface(url, "wmts");
|
|
39509
39944
|
}
|
|
39510
39945
|
|
|
39511
39946
|
layerData.visible = isAdd;
|
|
@@ -40133,7 +40568,7 @@ class LayerManager {
|
|
|
40133
40568
|
|
|
40134
40569
|
function getChildren(parent) {
|
|
40135
40570
|
for (let z = 0; z < layers_old.length; z++) {
|
|
40136
|
-
if (layers_old[z].parentLayerId === parent.id && layers_old[z].sourceName === parent.sourceName) {
|
|
40571
|
+
if (layers_old[z].parentLayerId + "" === parent.id + "" && layers_old[z].sourceName === parent.sourceName) {
|
|
40137
40572
|
// 分组节点
|
|
40138
40573
|
if (layers_old[z].groupLayer) {
|
|
40139
40574
|
getChildren(layers_old[z]);
|