@kq_npm/client3d_webgl_vue 4.5.31 → 4.5.32
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 +226 -495
- package/aspectanalysis/index.js +71 -182
- package/baseterraingallery/index.js +40 -102
- package/boxclip/index.js +197 -423
- package/clientPrint/index.js +6953 -17145
- package/comparemap/index.js +165 -216
- package/compass/index.js +20 -47
- package/excavatefillanalysis/index.js +101 -206
- package/fixedzoomin/index.js +20 -43
- package/fixedzoomout/index.js +18 -42
- package/flight/index.js +206 -353
- package/floodanalysis/index.js +145 -328
- package/geologicalbodyanalysis/index.js +114 -241
- package/gpuspatialquery/index.js +146 -340
- package/hawkeye/index.js +78 -80
- package/headertemp/index.js +8 -19
- package/heatmap3d/index.js +304 -645
- package/index.js +6525 -16962
- package/isolineanalysis/index.js +451 -1183
- package/light/index.js +308 -486
- package/limitheightanalysis/index.js +107 -204
- package/measure/index.js +145 -331
- package/modelFlat/index.js +114 -183
- package/modelexcavate/index.js +78 -172
- package/modelfilter/index.js +127 -252
- package/modelprofileanalysis/index.js +154 -297
- package/modelselect/index.js +90 -128
- package/package.json +1 -1
- package/particleeffect/index.js +170 -381
- package/planeclip/index.js +146 -281
- package/resetview/index.js +12 -31
- package/roller/index.js +252 -353
- package/scaneffect/index.js +178 -518
- package/sceneadvancedtoimage/index.js +152 -337
- package/sceneapp/index.js +6953 -17145
- package/sceneset/index.js +299 -838
- package/scenetohdimage/index.js +105 -276
- package/sceneview/index.js +6953 -17145
- package/screenshot/index.js +204 -281
- package/shadowanalysis/index.js +175 -386
- package/sightlineanalysis/index.js +135 -245
- package/skylineanalysis/index.js +108 -289
- package/slopeanalysis/index.js +174 -378
- package/slopeaspectanalysis/index.js +206 -466
- package/statusbar/index.js +37 -39
- package/terrainoperation/index.js +124 -218
- package/terrainprofileanalysis/index.js +66 -118
- package/typhoontrac/index.js +165 -321
- package/underground/index.js +16 -40
- package/videofusion/index.js +214 -470
- package/videoproject/index.js +220 -472
- package/viewshedanalysis/index.js +93 -230
- package/weathereffect/index.js +111 -295
- package/windyslicing/index.js +262 -695
- package/wireframesketch/index.js +49 -106
|
@@ -20,7 +20,6 @@ return /******/ (function() { // webpackBootstrap
|
|
|
20
20
|
/* harmony export */ });
|
|
21
21
|
/* harmony import */ var _Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8270);
|
|
22
22
|
|
|
23
|
-
|
|
24
23
|
/*
|
|
25
24
|
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
26
25
|
* All rights reserved.
|
|
@@ -30,15 +29,13 @@ class BaseterrainGalleryViewModel {
|
|
|
30
29
|
//基本地形对象
|
|
31
30
|
constructor(viewer) {
|
|
32
31
|
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_baseterrainGallery", {});
|
|
33
|
-
|
|
34
32
|
this._baseterrainGallery.viewer = viewer;
|
|
35
33
|
this._baseterrainGallery.viewer.scene.globe.depthTestAgainstTerrain = false;
|
|
36
|
-
this._baseterrainGallery.viewer.scene.postProcessStages.fxaa.enabled = false;
|
|
37
|
-
|
|
34
|
+
this._baseterrainGallery.viewer.scene.postProcessStages.fxaa.enabled = false;
|
|
35
|
+
//this.terrainTDT();
|
|
38
36
|
this.terrainNo();
|
|
39
37
|
this.terrainCesium();
|
|
40
38
|
}
|
|
41
|
-
|
|
42
39
|
setTerrainType(inx) {
|
|
43
40
|
if (inx === 0) {
|
|
44
41
|
this._baseterrainGallery.viewer.terrainProvider = this._baseterrainGallery.terrainTDT;
|
|
@@ -47,9 +44,8 @@ class BaseterrainGalleryViewModel {
|
|
|
47
44
|
} else if (inx === 2) {
|
|
48
45
|
this._baseterrainGallery.viewer.terrainProvider = this._baseterrainGallery.terrainNo;
|
|
49
46
|
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
|
|
47
|
+
}
|
|
48
|
+
//天地图地形
|
|
53
49
|
terrainTDT() {
|
|
54
50
|
this._baseterrainGallery.terrainTDT = new window.Cesium.TiandituTerrainProvider({
|
|
55
51
|
url: "https://t{s}.tianditu.gov.cn/DEM90M/DataServer?T=elv_c",
|
|
@@ -59,16 +55,12 @@ class BaseterrainGalleryViewModel {
|
|
|
59
55
|
/**
|
|
60
56
|
* 无地形
|
|
61
57
|
*/
|
|
62
|
-
|
|
63
|
-
|
|
64
58
|
terrainNo() {
|
|
65
59
|
this._baseterrainGallery.terrainNo = new window.Cesium.EllipsoidTerrainProvider();
|
|
66
60
|
}
|
|
67
61
|
/**
|
|
68
62
|
* cesium全球地形
|
|
69
63
|
*/
|
|
70
|
-
|
|
71
|
-
|
|
72
64
|
terrainCesium() {
|
|
73
65
|
window.Cesium.Ion.defaultAccessToken = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIwMTY2NmY5Yi05OTM4LTQzMDAtOWFiNS00NTFlZmVkYWE2OTMiLCJpZCI6Nzc1NDAsImlhdCI6MTY0MDMzNzc2MH0.V6JP-o1fF5PQZ6BQzo5vS1SATDid7sM0NjOtQuRULjU";
|
|
74
66
|
this._baseterrainGallery.terrainCesium = new window.Cesium.createWorldTerrain({
|
|
@@ -79,20 +71,15 @@ class BaseterrainGalleryViewModel {
|
|
|
79
71
|
/**
|
|
80
72
|
* 清理地图
|
|
81
73
|
*/
|
|
82
|
-
|
|
83
|
-
|
|
84
74
|
clear() {
|
|
85
75
|
this.setTerrainType(2);
|
|
86
76
|
}
|
|
87
77
|
/**
|
|
88
78
|
* 注销
|
|
89
79
|
*/
|
|
90
|
-
|
|
91
|
-
|
|
92
80
|
destroy() {
|
|
93
81
|
this.clear();
|
|
94
82
|
}
|
|
95
|
-
|
|
96
83
|
}
|
|
97
84
|
|
|
98
85
|
/***/ }),
|
|
@@ -163,7 +150,6 @@ function _defineProperty(obj, key, value) {
|
|
|
163
150
|
} else {
|
|
164
151
|
obj[key] = value;
|
|
165
152
|
}
|
|
166
|
-
|
|
167
153
|
return obj;
|
|
168
154
|
}
|
|
169
155
|
|
|
@@ -311,7 +297,6 @@ const __default__ = {
|
|
|
311
297
|
type: Boolean,
|
|
312
298
|
default: true
|
|
313
299
|
},
|
|
314
|
-
|
|
315
300
|
/**
|
|
316
301
|
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
317
302
|
*/
|
|
@@ -341,27 +326,30 @@ const __default__ = {
|
|
|
341
326
|
default: true
|
|
342
327
|
}
|
|
343
328
|
},
|
|
344
|
-
|
|
345
329
|
setup(__props, {
|
|
346
330
|
expose: __expose
|
|
347
331
|
}) {
|
|
348
332
|
const props = __props;
|
|
349
333
|
const {
|
|
350
334
|
proxy
|
|
351
|
-
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
|
|
352
|
-
|
|
353
|
-
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(proxy.$i18n.global.messages[proxy.$i18n.global.locale]["webgl"]);
|
|
354
|
-
|
|
335
|
+
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
|
|
336
|
+
//语言
|
|
337
|
+
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(proxy.$i18n.global.messages[proxy.$i18n.global.locale]["webgl"]);
|
|
338
|
+
//地形选中值
|
|
355
339
|
let currentIndex = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(2);
|
|
356
|
-
let currentTerrain = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
340
|
+
let currentTerrain = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
357
341
|
|
|
358
|
-
|
|
342
|
+
//逻辑类对象
|
|
343
|
+
let viewModel = null;
|
|
359
344
|
|
|
360
|
-
|
|
345
|
+
// 组件容器Ref
|
|
346
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
361
347
|
|
|
348
|
+
// 生成组件默认header
|
|
362
349
|
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
363
|
-
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
350
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
364
351
|
|
|
352
|
+
// 国际化
|
|
365
353
|
let {
|
|
366
354
|
locale,
|
|
367
355
|
messages
|
|
@@ -382,76 +370,63 @@ const __default__ = {
|
|
|
382
370
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
383
371
|
if (scenceView) {
|
|
384
372
|
changSelectTerrain();
|
|
385
|
-
viewModel = new BaseterrainGalleryViewModel/* default */.Z(scenceView._viewer);
|
|
386
|
-
|
|
373
|
+
viewModel = new BaseterrainGalleryViewModel/* default */.Z(scenceView._viewer);
|
|
374
|
+
// 初始化无地形时不需要设置地形, 如果将地形设置为无地形可能会影响其他功能添加的地形
|
|
387
375
|
if (currentIndex.value != 2) viewModel.setTerrainType(currentIndex.value);
|
|
388
376
|
}
|
|
389
377
|
});
|
|
390
378
|
});
|
|
379
|
+
|
|
391
380
|
/**
|
|
392
381
|
* @description 监听header生成
|
|
393
382
|
*/
|
|
394
|
-
|
|
395
383
|
const watchCreateHeaderTemp = () => {
|
|
396
384
|
if (props.showHeaderTemp) {
|
|
397
385
|
// 生成headerTemp
|
|
398
386
|
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef, headerTempTitle);
|
|
399
387
|
}
|
|
400
388
|
};
|
|
401
|
-
|
|
402
389
|
function changSelectTerrain() {
|
|
403
390
|
switch (currentIndex.value) {
|
|
404
391
|
case 0:
|
|
405
392
|
currentTerrain.value = language.value["tiandituTerrain"];
|
|
406
393
|
break;
|
|
407
|
-
|
|
408
394
|
case 1:
|
|
409
395
|
currentTerrain.value = language.value["cesiumTerrain"];
|
|
410
396
|
break;
|
|
411
|
-
|
|
412
397
|
case 2:
|
|
413
398
|
currentTerrain.value = language.value["ellipsoidTerrain"];
|
|
414
399
|
break;
|
|
415
400
|
}
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
|
|
401
|
+
}
|
|
402
|
+
//地形选择事件
|
|
419
403
|
function clickHandler(inx) {
|
|
420
404
|
currentIndex.value = inx;
|
|
421
405
|
changSelectTerrain();
|
|
422
406
|
viewModel.setTerrainType(currentIndex.value);
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
|
|
407
|
+
}
|
|
408
|
+
//清除结果
|
|
426
409
|
function clearResult() {
|
|
427
410
|
viewModel && viewModel.clear();
|
|
428
411
|
}
|
|
429
|
-
|
|
430
412
|
function getSelectIndex() {
|
|
431
413
|
return currentIndex.value;
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
|
|
414
|
+
}
|
|
415
|
+
// 销毁
|
|
435
416
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
436
417
|
clearResult();
|
|
437
418
|
});
|
|
438
|
-
|
|
439
419
|
__expose({
|
|
440
420
|
changSelectTerrain,
|
|
441
421
|
clickHandler,
|
|
442
422
|
getSelectIndex,
|
|
443
423
|
clearResult
|
|
444
424
|
});
|
|
445
|
-
|
|
446
425
|
return (_ctx, _cache) => {
|
|
447
426
|
const _component_kq_form_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form-item");
|
|
448
|
-
|
|
449
427
|
const _component_kq_row = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-row");
|
|
450
|
-
|
|
451
428
|
const _component_kq_form = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form");
|
|
452
|
-
|
|
453
429
|
const _component_kq_col = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-col");
|
|
454
|
-
|
|
455
430
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
456
431
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-baseterrain-gallery", {
|
|
457
432
|
'kq-box-shadow': __props.showShadow
|
|
@@ -462,9 +437,7 @@ const __default__ = {
|
|
|
462
437
|
key: 0,
|
|
463
438
|
ref_key: "headerTempRef",
|
|
464
439
|
ref: headerTempRef
|
|
465
|
-
}, null, 512
|
|
466
|
-
/* NEED_PATCH */
|
|
467
|
-
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
440
|
+
}, null, 512 /* NEED_PATCH */)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
468
441
|
style: {
|
|
469
442
|
"line-height": "48px",
|
|
470
443
|
"height": "48px"
|
|
@@ -473,18 +446,10 @@ const __default__ = {
|
|
|
473
446
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
474
447
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).onlineTerrain
|
|
475
448
|
}, {
|
|
476
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(currentTerrain)), 1
|
|
477
|
-
/*
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
/* STABLE */
|
|
481
|
-
|
|
482
|
-
}, 8
|
|
483
|
-
/* PROPS */
|
|
484
|
-
, ["label"])]),
|
|
485
|
-
_: 1
|
|
486
|
-
/* STABLE */
|
|
487
|
-
|
|
449
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(currentTerrain)), 1 /* TEXT */)]),
|
|
450
|
+
_: 1 /* STABLE */
|
|
451
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
452
|
+
_: 1 /* STABLE */
|
|
488
453
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
489
454
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
490
455
|
span: 24
|
|
@@ -497,51 +462,26 @@ const __default__ = {
|
|
|
497
462
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
|
|
498
463
|
src: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(const_image_.CESIUM_TERRAiIN_URL),
|
|
499
464
|
alt: ""
|
|
500
|
-
}, null, 8
|
|
501
|
-
/*
|
|
502
|
-
|
|
503
|
-
/* TEXT */
|
|
504
|
-
)])]),
|
|
505
|
-
_: 1
|
|
506
|
-
/* STABLE */
|
|
507
|
-
|
|
508
|
-
}, 8
|
|
509
|
-
/* PROPS */
|
|
510
|
-
, ["class"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
465
|
+
}, null, 8 /* PROPS */, _hoisted_4)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_5, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_6, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).cesiumTerrain), 1 /* TEXT */)])]),
|
|
466
|
+
_: 1 /* STABLE */
|
|
467
|
+
}, 8 /* PROPS */, ["class"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
511
468
|
onClick: _cache[1] || (_cache[1] = $event => clickHandler(2)),
|
|
512
469
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(currentIndex) == 2 ? 'active' : '')
|
|
513
470
|
}, {
|
|
514
471
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_7, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
|
|
515
472
|
src: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(const_image_.NO_TERRAiIN_URL),
|
|
516
473
|
alt: ""
|
|
517
|
-
}, null, 8
|
|
518
|
-
/*
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
)])]),
|
|
522
|
-
_: 1
|
|
523
|
-
/* STABLE */
|
|
524
|
-
|
|
525
|
-
}, 8
|
|
526
|
-
/* PROPS */
|
|
527
|
-
, ["class"])]),
|
|
528
|
-
_: 1
|
|
529
|
-
/* STABLE */
|
|
530
|
-
|
|
474
|
+
}, null, 8 /* PROPS */, _hoisted_8)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_9, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_10, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).ellipsoidTerrain), 1 /* TEXT */)])]),
|
|
475
|
+
_: 1 /* STABLE */
|
|
476
|
+
}, 8 /* PROPS */, ["class"])]),
|
|
477
|
+
_: 1 /* STABLE */
|
|
531
478
|
})]),
|
|
532
|
-
_: 1
|
|
533
|
-
/* STABLE */
|
|
534
|
-
|
|
479
|
+
_: 1 /* STABLE */
|
|
535
480
|
})]),
|
|
536
|
-
_: 1
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
})])], 2
|
|
540
|
-
/* CLASS */
|
|
541
|
-
);
|
|
481
|
+
_: 1 /* STABLE */
|
|
482
|
+
})])], 2 /* CLASS */);
|
|
542
483
|
};
|
|
543
484
|
}
|
|
544
|
-
|
|
545
485
|
}));
|
|
546
486
|
;// CONCATENATED MODULE: ./src/webgl/baseterraingallery/BaseterrainGallery.vue?vue&type=script&setup=true&lang=js
|
|
547
487
|
|
|
@@ -563,13 +503,11 @@ var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
|
563
503
|
|
|
564
504
|
|
|
565
505
|
|
|
566
|
-
|
|
567
506
|
BaseterrainGallery.install = (Vue, opts) => {
|
|
568
507
|
init_js_default()(Vue, opts);
|
|
569
508
|
Vue.component(BaseterrainGallery.name, BaseterrainGallery);
|
|
570
509
|
};
|
|
571
510
|
|
|
572
|
-
|
|
573
511
|
}();
|
|
574
512
|
/******/ return __webpack_exports__;
|
|
575
513
|
/******/ })()
|