@kq_npm/client3d_webgl_vue 4.5.24 → 4.5.26
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 +20 -10
- package/aspectanalysis/index.js +1 -0
- package/baseterraingallery/index.js +1 -0
- package/boxclip/index.js +1 -0
- package/clientPrint/index.js +507 -241
- package/excavatefillanalysis/index.js +1 -0
- package/flight/index.js +1 -0
- package/floodanalysis/index.js +1 -0
- package/geologicalbodyanalysis/index.js +1 -0
- package/gpuspatialquery/index.js +1 -0
- package/heatmap3d/index.js +1 -0
- package/index.js +392 -163
- package/isolineanalysis/index.js +1 -0
- package/light/index.js +1 -0
- package/limitheightanalysis/index.js +1 -0
- package/modelFlat/index.js +1 -0
- package/modelexcavate/index.js +1 -0
- package/modelfilter/index.js +1 -0
- package/modelprofileanalysis/index.js +1 -0
- package/modelselect/index.js +1 -0
- package/package.json +1 -1
- package/particleeffect/index.js +1 -0
- package/planeclip/index.js +1 -0
- package/roller/index.js +1 -0
- package/scaneffect/index.js +1 -0
- package/sceneadvancedtoimage/index.js +1 -0
- package/sceneapp/index.js +507 -241
- package/sceneset/index.js +8 -7
- package/scenetohdimage/index.js +1 -0
- package/sceneview/index.js +507 -241
- package/screenshot/index.js +1 -0
- package/shadowanalysis/index.js +1 -0
- package/sightlineanalysis/index.js +1 -0
- package/skylineanalysis/index.js +1 -0
- package/slopeanalysis/index.js +1 -0
- package/slopeaspectanalysis/index.js +1 -0
- package/style.css +1 -1
- package/terrainoperation/index.js +1 -0
- package/terrainprofileanalysis/index.js +1 -0
- package/typhoontrac/index.js +534 -0
- package/typhoontrac/style/index.js +3 -0
- package/typhoontrac/style/typhoontrac.css +1 -0
- package/videofusion/index.js +1 -0
- package/videoproject/index.js +1 -0
- package/viewshedanalysis/index.js +1 -0
- package/weathereffect/index.js +1 -0
- package/wireframesketch/index.js +1 -0
package/index.js
CHANGED
|
@@ -483,7 +483,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".tool-box-wrapper-3d .kq-icon_grid{col
|
|
|
483
483
|
|
|
484
484
|
/***/ }),
|
|
485
485
|
|
|
486
|
-
/***/
|
|
486
|
+
/***/ 272:
|
|
487
487
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
488
488
|
|
|
489
489
|
"use strict";
|
|
@@ -1133,6 +1133,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
1133
1133
|
"Kq3dTerrainOperationViewModel": function() { return /* reexport */ TerrainOperationViewModel; },
|
|
1134
1134
|
"Kq3dTerrainProfileAnalysis": function() { return /* reexport */ TerrainProfileAnalysis; },
|
|
1135
1135
|
"Kq3dTerrainProfileAnalysisViewModel": function() { return /* reexport */ TerrainProfileAnalysisViewModel; },
|
|
1136
|
+
"Kq3dTyphoonTrac": function() { return /* reexport */ TyphoonTrac; },
|
|
1137
|
+
"Kq3dTyphoonTracViewModel": function() { return /* reexport */ TyphoonTracViewModel; },
|
|
1136
1138
|
"Kq3dUnderground": function() { return /* reexport */ Underground; },
|
|
1137
1139
|
"Kq3dUndergroundViewModel": function() { return /* reexport */ UndergroundViewModel; },
|
|
1138
1140
|
"Kq3dVideoFusion": function() { return /* reexport */ VideoFusion; },
|
|
@@ -1455,6 +1457,9 @@ class DrawManager {
|
|
|
1455
1457
|
var unionOptions = {
|
|
1456
1458
|
...this._drawStyle[type]
|
|
1457
1459
|
};
|
|
1460
|
+
if (type === "CatmullRomSpline") unionOptions = {
|
|
1461
|
+
...this._drawStyle["polyline"]
|
|
1462
|
+
};
|
|
1458
1463
|
for (const key in unionOptions) {
|
|
1459
1464
|
if (Object.hasOwnProperty.call(options, key)) {
|
|
1460
1465
|
unionOptions[key] = options[key];
|
|
@@ -3001,7 +3006,8 @@ class LayerManager {
|
|
|
3001
3006
|
entity.polyline = {
|
|
3002
3007
|
positions: entity.polygon.hierarchy._value.positions,
|
|
3003
3008
|
width: geojsonStyle.polygon.outlineWidth,
|
|
3004
|
-
material: geojsonStyle.polygon.outlineColor
|
|
3009
|
+
material: geojsonStyle.polygon.outlineColor,
|
|
3010
|
+
clampToGround: !geojsonStyle.polygon.perPositionHeight
|
|
3005
3011
|
};
|
|
3006
3012
|
}
|
|
3007
3013
|
}, this);
|
|
@@ -3024,7 +3030,8 @@ class LayerManager {
|
|
|
3024
3030
|
entity.polyline = {
|
|
3025
3031
|
positions: entity.polygon.hierarchy._value.positions,
|
|
3026
3032
|
width: geojsonStyle.polygon.outlineWidth,
|
|
3027
|
-
material: geojsonStyle.polygon.outlineColor
|
|
3033
|
+
material: geojsonStyle.polygon.outlineColor,
|
|
3034
|
+
clampToGround: !geojsonStyle.polygon.perPositionHeight
|
|
3028
3035
|
};
|
|
3029
3036
|
}
|
|
3030
3037
|
}, this);
|
|
@@ -3428,7 +3435,7 @@ class LayerManager {
|
|
|
3428
3435
|
// 粒子特效
|
|
3429
3436
|
if (layerArr && layerArr.length > 0) {
|
|
3430
3437
|
let layerObj = Object.assign({}, layerArr[0]);
|
|
3431
|
-
|
|
3438
|
+
layerObj.url = (0,util_.urlAppend)(layerObj.url, "limit=false");
|
|
3432
3439
|
let layerParticle = this.getLayerByGuid(guid + "_particle", "imagerylayer");
|
|
3433
3440
|
let layerWind = this.getLayerByGuid(guid + "_wind", "imagerylayer");
|
|
3434
3441
|
if (params.hasOwnProperty('showVelocity')) {
|
|
@@ -8167,6 +8174,7 @@ const BaseterrainGalleryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8167
8174
|
messages
|
|
8168
8175
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
8169
8176
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
8177
|
+
headerTempTitle.value = language.value.onlineTerrain;
|
|
8170
8178
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
8171
8179
|
language.value = messages.value[newVal]["webgl"];
|
|
8172
8180
|
headerTempTitle.value = language.value.onlineTerrain;
|
|
@@ -9493,6 +9501,7 @@ const Flightvue_type_script_setup_true_lang_js_default_ = {
|
|
|
9493
9501
|
messages
|
|
9494
9502
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
9495
9503
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
9504
|
+
headerTempTitle.value = language.value.flight;
|
|
9496
9505
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
9497
9506
|
language.value = messages.value[newVal]["webgl"];
|
|
9498
9507
|
headerTempTitle.value = language.value.flight;
|
|
@@ -10546,6 +10555,7 @@ const GPUSpatialQueryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
10546
10555
|
messages
|
|
10547
10556
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
10548
10557
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
10558
|
+
headerTempTitle.value = language.value.spatialQuery;
|
|
10549
10559
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
10550
10560
|
language.value = messages.value[newVal]["webgl"];
|
|
10551
10561
|
headerTempTitle.value = language.value.spatialQuery;
|
|
@@ -11162,6 +11172,7 @@ const ModelSelectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
11162
11172
|
messages
|
|
11163
11173
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
11164
11174
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
11175
|
+
headerTempTitle.value = language.value.modelPick;
|
|
11165
11176
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
11166
11177
|
language.value = messages.value[newVal]["webgl"];
|
|
11167
11178
|
headerTempTitle.value = language.value.modelPick;
|
|
@@ -11546,6 +11557,7 @@ const ModelFiltervue_type_script_setup_true_lang_js_default_ = {
|
|
|
11546
11557
|
messages
|
|
11547
11558
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
11548
11559
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
11560
|
+
headerTempTitle.value = language.value.modelFilterPick;
|
|
11549
11561
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
11550
11562
|
language.value = messages.value[newVal]["webgl"];
|
|
11551
11563
|
headerTempTitle.value = language.value.modelFilterPick;
|
|
@@ -12047,6 +12059,7 @@ const WireframeSketchvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12047
12059
|
messages
|
|
12048
12060
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
12049
12061
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
12062
|
+
headerTempTitle.value = language.value.wireFrameSketch;
|
|
12050
12063
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
12051
12064
|
language.value = messages.value[newVal]["webgl"];
|
|
12052
12065
|
headerTempTitle.value = language.value.wireFrameSketch;
|
|
@@ -12417,6 +12430,7 @@ const LimitHeightAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12417
12430
|
messages
|
|
12418
12431
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
12419
12432
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
12433
|
+
headerTempTitle.value = language.value.limitHeightAnalysis;
|
|
12420
12434
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
12421
12435
|
language.value = messages.value[newVal]["webgl"];
|
|
12422
12436
|
headerTempTitle.value = language.value.limitHeightAnalysis;
|
|
@@ -12942,6 +12956,7 @@ const TerrainProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12942
12956
|
messages
|
|
12943
12957
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
12944
12958
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
12959
|
+
headerTempTitle.value = language.value.terrainProfileName;
|
|
12945
12960
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
12946
12961
|
language.value = messages.value[newVal]["webgl"];
|
|
12947
12962
|
headerTempTitle.value = language.value.terrainProfileName;
|
|
@@ -13269,6 +13284,7 @@ const SceneToHDImagevue_type_script_setup_true_lang_js_default_ = {
|
|
|
13269
13284
|
messages
|
|
13270
13285
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
13271
13286
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
13287
|
+
headerTempTitle.value = language.value.sceneToHDImage;
|
|
13272
13288
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
13273
13289
|
language.value = messages.value[newVal]["webgl"];
|
|
13274
13290
|
headerTempTitle.value = language.value.sceneToHDImage;
|
|
@@ -14074,6 +14090,7 @@ const SceneAdvancedToImagevue_type_script_setup_true_lang_js_default_ = {
|
|
|
14074
14090
|
messages
|
|
14075
14091
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
14076
14092
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
14093
|
+
headerTempTitle.value = language.value.sceneAdvancedToImageTitle;
|
|
14077
14094
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
14078
14095
|
language.value = messages.value[newVal]["webgl"];
|
|
14079
14096
|
headerTempTitle.value = language.value.sceneAdvancedToImageTitle;
|
|
@@ -15056,6 +15073,7 @@ const ScanEffectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
15056
15073
|
messages
|
|
15057
15074
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
15058
15075
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
15076
|
+
headerTempTitle.value = language.value.scanningTitle;
|
|
15059
15077
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
15060
15078
|
language.value = messages.value[newVal]["webgl"];
|
|
15061
15079
|
headerTempTitle.value = language.value.scanningTitle;
|
|
@@ -16372,6 +16390,7 @@ const Heatmap3dvue_type_script_setup_true_lang_js_default_ = {
|
|
|
16372
16390
|
messages
|
|
16373
16391
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
16374
16392
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
16393
|
+
headerTempTitle.value = language.value.heatmapTitle;
|
|
16375
16394
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
16376
16395
|
language.value = messages.value[newVal]["webgl"];
|
|
16377
16396
|
headerTempTitle.value = language.value.heatmapTitle;
|
|
@@ -17504,6 +17523,7 @@ const ModelExcavatevue_type_script_setup_true_lang_js_default_ = {
|
|
|
17504
17523
|
messages
|
|
17505
17524
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
17506
17525
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
17526
|
+
headerTempTitle.value = language.value.modelExcavateTitle;
|
|
17507
17527
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
17508
17528
|
language.value = messages.value[newVal]["webgl"];
|
|
17509
17529
|
headerTempTitle.value = language.value.modelExcavateTitle;
|
|
@@ -17928,6 +17948,7 @@ const ModelFlatvue_type_script_setup_true_lang_js_default_ = {
|
|
|
17928
17948
|
messages
|
|
17929
17949
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
17930
17950
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
17951
|
+
headerTempTitle.value = language.value.modelFlatTitle;
|
|
17931
17952
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
17932
17953
|
language.value = messages.value[newVal]["webgl"];
|
|
17933
17954
|
headerTempTitle.value = language.value.modelFlatTitle;
|
|
@@ -18114,6 +18135,272 @@ ModelFlat.install = (Vue, opts) => {
|
|
|
18114
18135
|
Vue.component(ModelFlat.name, ModelFlat);
|
|
18115
18136
|
};
|
|
18116
18137
|
|
|
18138
|
+
;// CONCATENATED MODULE: ./src/webgl/typhoontrac/TyphoonTracViewModel.js
|
|
18139
|
+
|
|
18140
|
+
/*
|
|
18141
|
+
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
18142
|
+
* All rights reserved.
|
|
18143
|
+
*/
|
|
18144
|
+
|
|
18145
|
+
class TyphoonTracViewModel {
|
|
18146
|
+
// 三维viewer对象
|
|
18147
|
+
constructor(scenceView, option) {
|
|
18148
|
+
_defineProperty(this, "_viewer", null);
|
|
18149
|
+
this._viewer = scenceView._viewer;
|
|
18150
|
+
}
|
|
18151
|
+
start() {}
|
|
18152
|
+
//清除
|
|
18153
|
+
clear() {}
|
|
18154
|
+
|
|
18155
|
+
//销毁
|
|
18156
|
+
destroy() {}
|
|
18157
|
+
}
|
|
18158
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/typhoontrac/TyphoonTrac.vue?vue&type=script&setup=true&lang=js
|
|
18159
|
+
|
|
18160
|
+
|
|
18161
|
+
|
|
18162
|
+
|
|
18163
|
+
const TyphoonTracvue_type_script_setup_true_lang_js_hoisted_1 = {
|
|
18164
|
+
class: "kq3d-typhoon-box"
|
|
18165
|
+
};
|
|
18166
|
+
const TyphoonTracvue_type_script_setup_true_lang_js_hoisted_2 = {
|
|
18167
|
+
class: "kq3d-typhoon-span"
|
|
18168
|
+
};
|
|
18169
|
+
|
|
18170
|
+
|
|
18171
|
+
|
|
18172
|
+
|
|
18173
|
+
|
|
18174
|
+
|
|
18175
|
+
const TyphoonTracvue_type_script_setup_true_lang_js_default_ = {
|
|
18176
|
+
name: "Kq3dTyphoonTrac"
|
|
18177
|
+
};
|
|
18178
|
+
/* harmony default export */ var TyphoonTracvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(TyphoonTracvue_type_script_setup_true_lang_js_default_, {
|
|
18179
|
+
props: {
|
|
18180
|
+
//指定组件绑定的viewer对象的div的id
|
|
18181
|
+
mapTarget: String,
|
|
18182
|
+
settingParams: {
|
|
18183
|
+
control: "object",
|
|
18184
|
+
description: "设置参数"
|
|
18185
|
+
},
|
|
18186
|
+
// 是否显示阴影效果
|
|
18187
|
+
showShadow: {
|
|
18188
|
+
type: Boolean,
|
|
18189
|
+
default: true
|
|
18190
|
+
},
|
|
18191
|
+
/**
|
|
18192
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
18193
|
+
*/
|
|
18194
|
+
position: [String, Object],
|
|
18195
|
+
// 是否生成HeaderTemp
|
|
18196
|
+
showHeaderTemp: {
|
|
18197
|
+
type: Boolean,
|
|
18198
|
+
default: false
|
|
18199
|
+
},
|
|
18200
|
+
// 是否折叠HeaderTemp,showHeaderTemp为true时生效
|
|
18201
|
+
isCollapseHeaderTemp: {
|
|
18202
|
+
type: Boolean,
|
|
18203
|
+
default: false
|
|
18204
|
+
},
|
|
18205
|
+
// HeaderTemp标题
|
|
18206
|
+
headerTempTitle: {
|
|
18207
|
+
type: String
|
|
18208
|
+
},
|
|
18209
|
+
// HeaderTemp图标
|
|
18210
|
+
headerTempIcon: {
|
|
18211
|
+
type: [Object, String],
|
|
18212
|
+
default: client_icons_vue_namespaceObject.IconProfileAnalysis
|
|
18213
|
+
},
|
|
18214
|
+
// HeaderTemp Title&Icon的位置
|
|
18215
|
+
isRight: {
|
|
18216
|
+
type: Boolean,
|
|
18217
|
+
default: true
|
|
18218
|
+
}
|
|
18219
|
+
},
|
|
18220
|
+
setup(__props, {
|
|
18221
|
+
expose: __expose
|
|
18222
|
+
}) {
|
|
18223
|
+
const props = __props;
|
|
18224
|
+
const {
|
|
18225
|
+
proxy
|
|
18226
|
+
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
|
|
18227
|
+
//语言
|
|
18228
|
+
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(proxy.$i18n.global.messages[proxy.$i18n.global.locale]["webgl"]);
|
|
18229
|
+
let currentLang = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
18230
|
+
let viewModel = null;
|
|
18231
|
+
let ref_box = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
18232
|
+
|
|
18233
|
+
// 获取组件传参
|
|
18234
|
+
|
|
18235
|
+
// 组件容器Ref
|
|
18236
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
18237
|
+
|
|
18238
|
+
// 生成组件默认header
|
|
18239
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
18240
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
18241
|
+
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
18242
|
+
typhoonTracPath: props.settingParams && props.settingParams.typhoonTracPath || ""
|
|
18243
|
+
});
|
|
18244
|
+
|
|
18245
|
+
// 国际化
|
|
18246
|
+
let {
|
|
18247
|
+
locale,
|
|
18248
|
+
messages
|
|
18249
|
+
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
18250
|
+
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
18251
|
+
headerTempTitle.value = language.value.typhoonTracName;
|
|
18252
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
18253
|
+
language.value = messages.value[newVal]["webgl"];
|
|
18254
|
+
headerTempTitle.value = language.value.typhoonTracName;
|
|
18255
|
+
viewModel && viewModel.changeLanguage(language.value);
|
|
18256
|
+
});
|
|
18257
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
18258
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
18259
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
18260
|
+
(0,util_.updatePosition)(boxRef.value, formItem);
|
|
18261
|
+
});
|
|
18262
|
+
watchCreateHeaderTemp();
|
|
18263
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
18264
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
18265
|
+
watchCreateHeaderTemp();
|
|
18266
|
+
});
|
|
18267
|
+
});
|
|
18268
|
+
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
18269
|
+
//父组件ScenceView初始化完成后执行
|
|
18270
|
+
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
18271
|
+
if (scenceView) {
|
|
18272
|
+
viewModel = new TyphoonTracViewModel(scenceView);
|
|
18273
|
+
viewModel._language = language.value;
|
|
18274
|
+
}
|
|
18275
|
+
});
|
|
18276
|
+
});
|
|
18277
|
+
|
|
18278
|
+
/**
|
|
18279
|
+
* @description 监听header生成
|
|
18280
|
+
*/
|
|
18281
|
+
const watchCreateHeaderTemp = () => {
|
|
18282
|
+
if (props.showHeaderTemp) {
|
|
18283
|
+
// 生成headerTemp
|
|
18284
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef, headerTempTitle);
|
|
18285
|
+
}
|
|
18286
|
+
};
|
|
18287
|
+
// 开始分析
|
|
18288
|
+
function startAnalysis() {
|
|
18289
|
+
viewModel && viewModel.start();
|
|
18290
|
+
}
|
|
18291
|
+
// 输入地址
|
|
18292
|
+
function selectTyphoonTracPath() {
|
|
18293
|
+
viewModel && viewModel.selectTyphoonTracPath(formItem.typhoonTracPath);
|
|
18294
|
+
}
|
|
18295
|
+
// 选择文件
|
|
18296
|
+
function selectData(file) {
|
|
18297
|
+
let url = URL.createObjectURL(file.raw);
|
|
18298
|
+
formItem.typhoonTracPath = url;
|
|
18299
|
+
viewModel && viewModel.selectTyphoonTracPath(formItem.typhoonTracPath);
|
|
18300
|
+
}
|
|
18301
|
+
// 清除
|
|
18302
|
+
function clear() {
|
|
18303
|
+
viewModel && viewModel.clear();
|
|
18304
|
+
}
|
|
18305
|
+
|
|
18306
|
+
// 销毁
|
|
18307
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
18308
|
+
viewModel && viewModel.destroy();
|
|
18309
|
+
});
|
|
18310
|
+
__expose({
|
|
18311
|
+
startAnalysis,
|
|
18312
|
+
clear
|
|
18313
|
+
});
|
|
18314
|
+
return (_ctx, _cache) => {
|
|
18315
|
+
const _component_kq_col = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-col");
|
|
18316
|
+
const _component_IconFolder2 = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("IconFolder2");
|
|
18317
|
+
const _component_kq_icon = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-icon");
|
|
18318
|
+
const _component_kq_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-button");
|
|
18319
|
+
const _component_kq_upload = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-upload");
|
|
18320
|
+
const _component_kq_input = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input");
|
|
18321
|
+
const _component_kq_row = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-row");
|
|
18322
|
+
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
18323
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-typhoon", {
|
|
18324
|
+
'kq-box-shadow': __props.showShadow
|
|
18325
|
+
}]),
|
|
18326
|
+
ref_key: "boxRef",
|
|
18327
|
+
ref: boxRef
|
|
18328
|
+
}, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
18329
|
+
key: 0,
|
|
18330
|
+
ref_key: "headerTempRef",
|
|
18331
|
+
ref: headerTempRef
|
|
18332
|
+
}, 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", TyphoonTracvue_type_script_setup_true_lang_js_hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
18333
|
+
class: "rowClass"
|
|
18334
|
+
}, {
|
|
18335
|
+
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, {
|
|
18336
|
+
span: 7,
|
|
18337
|
+
class: "colClass"
|
|
18338
|
+
}, {
|
|
18339
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", TyphoonTracvue_type_script_setup_true_lang_js_hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).dataPath), 1 /* TEXT */)]),
|
|
18340
|
+
_: 1 /* STABLE */
|
|
18341
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
18342
|
+
span: 17
|
|
18343
|
+
}, {
|
|
18344
|
+
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_input, {
|
|
18345
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).typhoonTracPath,
|
|
18346
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).typhoonTracPath = $event),
|
|
18347
|
+
onChange: _cache[1] || (_cache[1] = $event => selectTyphoonTracPath()),
|
|
18348
|
+
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).videoPathPlace
|
|
18349
|
+
}, {
|
|
18350
|
+
append: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_upload, {
|
|
18351
|
+
"on-change": selectData,
|
|
18352
|
+
"auto-upload": false,
|
|
18353
|
+
"show-file-list": false,
|
|
18354
|
+
accept: ".json"
|
|
18355
|
+
}, {
|
|
18356
|
+
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_button, null, {
|
|
18357
|
+
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_icon, {
|
|
18358
|
+
size: 16
|
|
18359
|
+
}, {
|
|
18360
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_IconFolder2)]),
|
|
18361
|
+
_: 1 /* STABLE */
|
|
18362
|
+
})]),
|
|
18363
|
+
_: 1 /* STABLE */
|
|
18364
|
+
})]),
|
|
18365
|
+
_: 1 /* STABLE */
|
|
18366
|
+
})]),
|
|
18367
|
+
_: 1 /* STABLE */
|
|
18368
|
+
}, 8 /* PROPS */, ["modelValue", "placeholder"])]),
|
|
18369
|
+
_: 1 /* STABLE */
|
|
18370
|
+
})]),
|
|
18371
|
+
_: 1 /* STABLE */
|
|
18372
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
18373
|
+
gutter: 20,
|
|
18374
|
+
class: "rowClass"
|
|
18375
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
18376
|
+
gutter: 20,
|
|
18377
|
+
class: "rowClass"
|
|
18378
|
+
})])], 2 /* CLASS */);
|
|
18379
|
+
};
|
|
18380
|
+
}
|
|
18381
|
+
}));
|
|
18382
|
+
;// CONCATENATED MODULE: ./src/webgl/typhoontrac/TyphoonTrac.vue?vue&type=script&setup=true&lang=js
|
|
18383
|
+
|
|
18384
|
+
;// CONCATENATED MODULE: ./src/webgl/typhoontrac/TyphoonTrac.vue
|
|
18385
|
+
|
|
18386
|
+
|
|
18387
|
+
|
|
18388
|
+
const TyphoonTrac_exports_ = TyphoonTracvue_type_script_setup_true_lang_js;
|
|
18389
|
+
|
|
18390
|
+
/* harmony default export */ var TyphoonTrac = (TyphoonTrac_exports_);
|
|
18391
|
+
;// CONCATENATED MODULE: ./src/webgl/typhoontrac/index.js
|
|
18392
|
+
/*
|
|
18393
|
+
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
18394
|
+
* All rights reserved.
|
|
18395
|
+
*/
|
|
18396
|
+
|
|
18397
|
+
|
|
18398
|
+
|
|
18399
|
+
TyphoonTrac.install = (Vue, opts) => {
|
|
18400
|
+
init_js_default()(Vue, opts);
|
|
18401
|
+
Vue.component(TyphoonTrac.name, TyphoonTrac);
|
|
18402
|
+
};
|
|
18403
|
+
|
|
18117
18404
|
;// CONCATENATED MODULE: external "core-js/modules/esnext.iterator.some.js"
|
|
18118
18405
|
var esnext_iterator_some_js_namespaceObject = require("core-js/modules/esnext.iterator.some.js");
|
|
18119
18406
|
// EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/webgl/sightlineanalysis/style/divpoint.scss
|
|
@@ -18485,6 +18772,7 @@ const SightlineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
18485
18772
|
messages
|
|
18486
18773
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
18487
18774
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
18775
|
+
headerTempTitle.value = language.value.sightlineAnalysis;
|
|
18488
18776
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
18489
18777
|
language.value = messages.value[newVal]["webgl"];
|
|
18490
18778
|
headerTempTitle.value = language.value.sightlineAnalysis;
|
|
@@ -18936,6 +19224,7 @@ const ViewshedAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
18936
19224
|
messages
|
|
18937
19225
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
18938
19226
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
19227
|
+
headerTempTitle.value = language.value.viewshedAnalysis;
|
|
18939
19228
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
18940
19229
|
language.value = messages.value[newVal]["webgl"];
|
|
18941
19230
|
headerTempTitle.value = language.value.viewshedAnalysis;
|
|
@@ -19627,6 +19916,7 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
19627
19916
|
messages
|
|
19628
19917
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
19629
19918
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
19919
|
+
headerTempTitle.value = language.value.shadowAnalysis;
|
|
19630
19920
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
19631
19921
|
language.value = messages.value[newVal]["webgl"];
|
|
19632
19922
|
headerTempTitle.value = language.value.shadowAnalysis;
|
|
@@ -20529,6 +20819,7 @@ const ModelProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
20529
20819
|
messages
|
|
20530
20820
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
20531
20821
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
20822
|
+
headerTempTitle.value = language.value.modelProfileAnalysis;
|
|
20532
20823
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
20533
20824
|
language.value = messages.value[newVal]["webgl"];
|
|
20534
20825
|
headerTempTitle.value = language.value.modelProfileAnalysis;
|
|
@@ -21256,6 +21547,7 @@ const SkylineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
21256
21547
|
messages
|
|
21257
21548
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
21258
21549
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
21550
|
+
headerTempTitle.value = language.value.skylineAnalysis;
|
|
21259
21551
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
21260
21552
|
language.value = messages.value[newVal]["webgl"];
|
|
21261
21553
|
headerTempTitle.value = language.value.skylineAnalysis;
|
|
@@ -21912,6 +22204,7 @@ const TerrainOperationvue_type_script_setup_true_lang_js_default_ = {
|
|
|
21912
22204
|
messages
|
|
21913
22205
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
21914
22206
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
22207
|
+
headerTempTitle.value = language.value.terrainOperation;
|
|
21915
22208
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
21916
22209
|
language.value = messages.value[newVal]["webgl"];
|
|
21917
22210
|
headerTempTitle.value = language.value.terrainOperation;
|
|
@@ -22380,6 +22673,7 @@ const ExcavateFillAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
22380
22673
|
messages
|
|
22381
22674
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
22382
22675
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
22676
|
+
headerTempTitle.value = language.value.excavateFillAnalysis;
|
|
22383
22677
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
22384
22678
|
language.value = messages.value[newVal]["webgl"];
|
|
22385
22679
|
headerTempTitle.value = language.value.excavateFillAnalysis;
|
|
@@ -23021,6 +23315,7 @@ const FloodAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
23021
23315
|
messages
|
|
23022
23316
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
23023
23317
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
23318
|
+
headerTempTitle.value = (formItem.floodMode == 0 ? language.value.floodTerrain : language.value.floodModel) + language.value.floodAnalysis1;
|
|
23024
23319
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
23025
23320
|
language.value = messages.value[newVal]["webgl"];
|
|
23026
23321
|
headerTempTitle.value = (formItem.floodMode == 0 ? language.value.floodTerrain : language.value.floodModel) + language.value.floodAnalysis1;
|
|
@@ -23836,6 +24131,7 @@ const SlopeAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
23836
24131
|
messages
|
|
23837
24132
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
23838
24133
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
24134
|
+
headerTempTitle.value = language.value.slopeAnalysis;
|
|
23839
24135
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
23840
24136
|
language.value = messages.value[newVal]["webgl"];
|
|
23841
24137
|
headerTempTitle.value = language.value.slopeAnalysis;
|
|
@@ -24517,6 +24813,7 @@ const AspectAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
24517
24813
|
messages
|
|
24518
24814
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
24519
24815
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
24816
|
+
headerTempTitle.value = language.value.aspectAnalysis;
|
|
24520
24817
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
24521
24818
|
language.value = messages.value[newVal]["webgl"];
|
|
24522
24819
|
headerTempTitle.value = language.value.aspectAnalysis;
|
|
@@ -25192,6 +25489,7 @@ const SlopeAspectAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
25192
25489
|
messages
|
|
25193
25490
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
25194
25491
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
25492
|
+
headerTempTitle.value = language.value.slopeAspectAnalysisTitle;
|
|
25195
25493
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
25196
25494
|
language.value = messages.value[newVal]["webgl"];
|
|
25197
25495
|
headerTempTitle.value = language.value.slopeAspectAnalysisTitle;
|
|
@@ -26337,6 +26635,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
26337
26635
|
messages
|
|
26338
26636
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
26339
26637
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
26638
|
+
headerTempTitle.value = language.value.isolineAnalysis;
|
|
26340
26639
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
26341
26640
|
language.value = messages.value[newVal]["webgl"];
|
|
26342
26641
|
headerTempTitle.value = language.value.isolineAnalysis;
|
|
@@ -28130,6 +28429,7 @@ const BoxClipvue_type_script_setup_true_lang_js_default_ = {
|
|
|
28130
28429
|
messages
|
|
28131
28430
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
28132
28431
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
28432
|
+
headerTempTitle.value = language.value.boxClip;
|
|
28133
28433
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
28134
28434
|
language.value = messages.value[newVal]["webgl"];
|
|
28135
28435
|
headerTempTitle.value = language.value.boxClip;
|
|
@@ -28988,6 +29288,7 @@ const PlaneClipvue_type_script_setup_true_lang_js_default_ = {
|
|
|
28988
29288
|
messages
|
|
28989
29289
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
28990
29290
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
29291
|
+
headerTempTitle.value = language.value.planeClip;
|
|
28991
29292
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
28992
29293
|
language.value = messages.value[newVal]["webgl"];
|
|
28993
29294
|
headerTempTitle.value = language.value.planeClip;
|
|
@@ -29427,7 +29728,8 @@ class AddDataViewModel {
|
|
|
29427
29728
|
entity.polyline = {
|
|
29428
29729
|
positions: entity.polygon.hierarchy._value.positions,
|
|
29429
29730
|
width: that._geojsonStyle.polygon.outlineWidth,
|
|
29430
|
-
material: that._geojsonStyle.polygon.outlineColor
|
|
29731
|
+
material: that._geojsonStyle.polygon.outlineColor,
|
|
29732
|
+
clampToGround: !that._geojsonStyle.polygon.perPositionHeight
|
|
29431
29733
|
};
|
|
29432
29734
|
}
|
|
29433
29735
|
});
|
|
@@ -29464,7 +29766,8 @@ class AddDataViewModel {
|
|
|
29464
29766
|
entity.polyline = {
|
|
29465
29767
|
positions: entity.polygon.hierarchy._value.positions,
|
|
29466
29768
|
width: that._geojsonStyle.polygon.outlineWidth,
|
|
29467
|
-
material: that._geojsonStyle.polygon.outlineColor
|
|
29769
|
+
material: that._geojsonStyle.polygon.outlineColor,
|
|
29770
|
+
clampToGround: !that._geojsonStyle.polygon.perPositionHeight
|
|
29468
29771
|
};
|
|
29469
29772
|
}
|
|
29470
29773
|
});
|
|
@@ -29539,7 +29842,8 @@ class AddDataViewModel {
|
|
|
29539
29842
|
entity.polyline = {
|
|
29540
29843
|
positions: entity.polygon.hierarchy._value.positions,
|
|
29541
29844
|
width: that._geojsonStyle.polygon.outlineWidth,
|
|
29542
|
-
material: that._geojsonStyle.polygon.outlineColor
|
|
29845
|
+
material: that._geojsonStyle.polygon.outlineColor,
|
|
29846
|
+
clampToGround: !that._geojsonStyle.polygon.perPositionHeight
|
|
29543
29847
|
};
|
|
29544
29848
|
}
|
|
29545
29849
|
});
|
|
@@ -29574,7 +29878,8 @@ class AddDataViewModel {
|
|
|
29574
29878
|
entity.polyline = {
|
|
29575
29879
|
positions: entity.polygon.hierarchy._value.positions,
|
|
29576
29880
|
width: that._geojsonStyle.polygon.outlineWidth,
|
|
29577
|
-
material: that._geojsonStyle.polygon.outlineColor
|
|
29881
|
+
material: that._geojsonStyle.polygon.outlineColor,
|
|
29882
|
+
clampToGround: !that._geojsonStyle.polygon.perPositionHeight
|
|
29578
29883
|
};
|
|
29579
29884
|
}
|
|
29580
29885
|
});
|
|
@@ -29616,7 +29921,8 @@ class AddDataViewModel {
|
|
|
29616
29921
|
entity.polyline = {
|
|
29617
29922
|
positions: entity.polygon.hierarchy._value.positions,
|
|
29618
29923
|
width: that._geojsonStyle.polygon.outlineWidth,
|
|
29619
|
-
material: that._geojsonStyle.polygon.outlineColor
|
|
29924
|
+
material: that._geojsonStyle.polygon.outlineColor,
|
|
29925
|
+
clampToGround: !that._geojsonStyle.polygon.perPositionHeight
|
|
29620
29926
|
};
|
|
29621
29927
|
}
|
|
29622
29928
|
});
|
|
@@ -29678,7 +29984,8 @@ class AddDataViewModel {
|
|
|
29678
29984
|
entity.polyline = {
|
|
29679
29985
|
positions: entity.polygon.hierarchy._value.positions,
|
|
29680
29986
|
width: style.polygon.outlineWidth,
|
|
29681
|
-
material: style.polygon.outlineColor
|
|
29987
|
+
material: style.polygon.outlineColor,
|
|
29988
|
+
clampToGround: !style.polygon.perPositionHeight
|
|
29682
29989
|
};
|
|
29683
29990
|
}
|
|
29684
29991
|
});
|
|
@@ -30049,7 +30356,8 @@ class AddDataViewModel {
|
|
|
30049
30356
|
entity.polyline = {
|
|
30050
30357
|
positions: entity.polygon.hierarchy._value.positions,
|
|
30051
30358
|
width: geojsonStyle0.polygon.outlineWidth,
|
|
30052
|
-
material: geojsonStyle0.polygon.outlineColor
|
|
30359
|
+
material: geojsonStyle0.polygon.outlineColor,
|
|
30360
|
+
clampToGround: !geojsonStyle0.polygon.perPositionHeight
|
|
30053
30361
|
};
|
|
30054
30362
|
}
|
|
30055
30363
|
});
|
|
@@ -30409,7 +30717,8 @@ class AddDataViewModel {
|
|
|
30409
30717
|
entity.polyline = {
|
|
30410
30718
|
positions: entity.polygon.hierarchy._value.positions,
|
|
30411
30719
|
width: this._geojsonStyle.polygon.outlineWidth,
|
|
30412
|
-
material: this._geojsonStyle.polygon.outlineColor
|
|
30720
|
+
material: this._geojsonStyle.polygon.outlineColor,
|
|
30721
|
+
clampToGround: !this._geojsonStyle.polygon.perPositionHeight
|
|
30413
30722
|
};
|
|
30414
30723
|
}
|
|
30415
30724
|
}, this);
|
|
@@ -30442,7 +30751,8 @@ class AddDataViewModel {
|
|
|
30442
30751
|
entity.polyline = {
|
|
30443
30752
|
positions: entity.polygon.hierarchy._value.positions,
|
|
30444
30753
|
width: geojsonStyle.polygon.outlineWidth,
|
|
30445
|
-
material: geojsonStyle.polygon.outlineColor
|
|
30754
|
+
material: geojsonStyle.polygon.outlineColor,
|
|
30755
|
+
clampToGround: !geojsonStyle.polygon.perPositionHeight
|
|
30446
30756
|
};
|
|
30447
30757
|
}
|
|
30448
30758
|
}, this);
|
|
@@ -30617,7 +30927,8 @@ class AddDataViewModel {
|
|
|
30617
30927
|
entity.polyline = {
|
|
30618
30928
|
positions: entity.polygon.hierarchy._value.positions,
|
|
30619
30929
|
width: this._geojsonStyle.polygon.outlineWidth,
|
|
30620
|
-
material: this._geojsonStyle.polygon.outlineColor
|
|
30930
|
+
material: this._geojsonStyle.polygon.outlineColor,
|
|
30931
|
+
clampToGround: !this._geojsonStyle.polygon.perPositionHeight
|
|
30621
30932
|
};
|
|
30622
30933
|
}
|
|
30623
30934
|
}, this);
|
|
@@ -31659,6 +31970,7 @@ const ParticleEffectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
31659
31970
|
messages
|
|
31660
31971
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
31661
31972
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
31973
|
+
headerTempTitle.value = language.value.particleEffect;
|
|
31662
31974
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
31663
31975
|
language.value = messages.value[newVal]["webgl"];
|
|
31664
31976
|
headerTempTitle.value = language.value.particleEffect;
|
|
@@ -32471,6 +32783,7 @@ const WeatherEffectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
32471
32783
|
messages
|
|
32472
32784
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
32473
32785
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
32786
|
+
headerTempTitle.value = language.value.weatherEffect;
|
|
32474
32787
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
32475
32788
|
language.value = messages.value[newVal]["webgl"];
|
|
32476
32789
|
headerTempTitle.value = language.value.weatherEffect;
|
|
@@ -33586,6 +33899,7 @@ const Screenshotvue_type_script_setup_true_lang_js_default_ = {
|
|
|
33586
33899
|
messages
|
|
33587
33900
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
33588
33901
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
33902
|
+
headerTempTitle.value = language.value.screenshot;
|
|
33589
33903
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
33590
33904
|
language.value = messages.value[newVal]["webgl"];
|
|
33591
33905
|
headerTempTitle.value = language.value.screenshot;
|
|
@@ -34264,6 +34578,7 @@ const Rollervue_type_script_setup_true_lang_js_default_ = {
|
|
|
34264
34578
|
messages
|
|
34265
34579
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
34266
34580
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
34581
|
+
headerTempTitle.value = language.value.roller;
|
|
34267
34582
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
34268
34583
|
language.value = messages.value[newVal]["webgl"];
|
|
34269
34584
|
headerTempTitle.value = language.value.roller;
|
|
@@ -35136,6 +35451,7 @@ const VideoProjectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
35136
35451
|
messages
|
|
35137
35452
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
35138
35453
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
35454
|
+
headerTempTitle.value = language.value.videoProject;
|
|
35139
35455
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
35140
35456
|
language.value = messages.value[newVal]["webgl"];
|
|
35141
35457
|
headerTempTitle.value = language.value.videoProject;
|
|
@@ -36150,6 +36466,7 @@ const VideoFusionvue_type_script_setup_true_lang_js_default_ = {
|
|
|
36150
36466
|
messages
|
|
36151
36467
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
36152
36468
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
36469
|
+
headerTempTitle.value = language.value.videoFusion;
|
|
36153
36470
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
36154
36471
|
language.value = messages.value[newVal]["webgl"];
|
|
36155
36472
|
headerTempTitle.value = language.value.videoFusion;
|
|
@@ -37399,6 +37716,7 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
37399
37716
|
messages
|
|
37400
37717
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
37401
37718
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
37719
|
+
headerTempTitle.value = language.value.sceneSet;
|
|
37402
37720
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
37403
37721
|
language.value = messages.value[newVal]["webgl"];
|
|
37404
37722
|
headerTempTitle.value = language.value.sceneSet;
|
|
@@ -38411,23 +38729,23 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38411
38729
|
}));
|
|
38412
38730
|
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=script&setup=true&lang=js
|
|
38413
38731
|
|
|
38414
|
-
// EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=
|
|
38415
|
-
var
|
|
38416
|
-
;// CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=
|
|
38732
|
+
// EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=5d1541c8&lang=scss
|
|
38733
|
+
var SceneSetvue_type_style_index_0_id_5d1541c8_lang_scss = __webpack_require__(272);
|
|
38734
|
+
;// CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=5d1541c8&lang=scss
|
|
38417
38735
|
|
|
38418
38736
|
|
|
38419
38737
|
|
|
38420
|
-
var
|
|
38738
|
+
var SceneSetvue_type_style_index_0_id_5d1541c8_lang_scss_options = {};
|
|
38421
38739
|
|
|
38422
|
-
|
|
38423
|
-
|
|
38740
|
+
SceneSetvue_type_style_index_0_id_5d1541c8_lang_scss_options.insert = "head";
|
|
38741
|
+
SceneSetvue_type_style_index_0_id_5d1541c8_lang_scss_options.singleton = false;
|
|
38424
38742
|
|
|
38425
|
-
var
|
|
38743
|
+
var SceneSetvue_type_style_index_0_id_5d1541c8_lang_scss_update = injectStylesIntoStyleTag_default()(SceneSetvue_type_style_index_0_id_5d1541c8_lang_scss/* default */.Z, SceneSetvue_type_style_index_0_id_5d1541c8_lang_scss_options);
|
|
38426
38744
|
|
|
38427
38745
|
|
|
38428
38746
|
|
|
38429
|
-
/* harmony default export */ var
|
|
38430
|
-
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=
|
|
38747
|
+
/* harmony default export */ var sceneset_SceneSetvue_type_style_index_0_id_5d1541c8_lang_scss = (SceneSetvue_type_style_index_0_id_5d1541c8_lang_scss/* default.locals */.Z.locals || {});
|
|
38748
|
+
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=5d1541c8&lang=scss
|
|
38431
38749
|
|
|
38432
38750
|
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue
|
|
38433
38751
|
|
|
@@ -38817,6 +39135,7 @@ const Lightvue_type_script_setup_true_lang_js_default_ = {
|
|
|
38817
39135
|
messages
|
|
38818
39136
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
38819
39137
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
39138
|
+
headerTempTitle.value = language.value.light;
|
|
38820
39139
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
38821
39140
|
language.value = messages.value[newVal]["webgl"];
|
|
38822
39141
|
headerTempTitle.value = language.value.light;
|
|
@@ -39462,6 +39781,7 @@ const GeologicalBodyAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
39462
39781
|
messages
|
|
39463
39782
|
} = (0,vue_i18n_cjs_js_namespaceObject.useI18n)();
|
|
39464
39783
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
39784
|
+
headerTempTitle.value = language.value.geologyBodyAnalysis;
|
|
39465
39785
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
39466
39786
|
language.value = messages.value[newVal]["webgl"];
|
|
39467
39787
|
headerTempTitle.value = language.value.geologyBodyAnalysis;
|
|
@@ -41830,7 +42150,7 @@ let getTooBox = ({
|
|
|
41830
42150
|
};
|
|
41831
42151
|
let getToolBoxConfig = () => {
|
|
41832
42152
|
return [{
|
|
41833
|
-
"label": "
|
|
42153
|
+
"label": "三维分析",
|
|
41834
42154
|
"props": [{
|
|
41835
42155
|
"label": "是否打开",
|
|
41836
42156
|
"key": "isOpen",
|
|
@@ -41841,40 +42161,7 @@ let getToolBoxConfig = () => {
|
|
|
41841
42161
|
"value": "true"
|
|
41842
42162
|
}],
|
|
41843
42163
|
"children": [{
|
|
41844
|
-
"label": "
|
|
41845
|
-
"props": [{
|
|
41846
|
-
"label": "是否置灰",
|
|
41847
|
-
"key": "disabled",
|
|
41848
|
-
"value": false
|
|
41849
|
-
}, {
|
|
41850
|
-
"label": "是否显示",
|
|
41851
|
-
"key": "isShow",
|
|
41852
|
-
"value": true
|
|
41853
|
-
}]
|
|
41854
|
-
}, {
|
|
41855
|
-
"label": "绘图",
|
|
41856
|
-
"props": [{
|
|
41857
|
-
"label": "是否置灰",
|
|
41858
|
-
"key": "disabled",
|
|
41859
|
-
"value": false
|
|
41860
|
-
}, {
|
|
41861
|
-
"label": "是否显示",
|
|
41862
|
-
"key": "isShow",
|
|
41863
|
-
"value": true
|
|
41864
|
-
}]
|
|
41865
|
-
}, {
|
|
41866
|
-
"label": "定位",
|
|
41867
|
-
"props": [{
|
|
41868
|
-
"label": "是否置灰",
|
|
41869
|
-
"key": "disabled",
|
|
41870
|
-
"value": false
|
|
41871
|
-
}, {
|
|
41872
|
-
"label": "是否显示",
|
|
41873
|
-
"key": "isShow",
|
|
41874
|
-
"value": true
|
|
41875
|
-
}]
|
|
41876
|
-
}, {
|
|
41877
|
-
"label": "选图",
|
|
42164
|
+
"label": "通视分析",
|
|
41878
42165
|
"props": [{
|
|
41879
42166
|
"label": "是否置灰",
|
|
41880
42167
|
"key": "disabled",
|
|
@@ -41886,7 +42173,7 @@ let getToolBoxConfig = () => {
|
|
|
41886
42173
|
}]
|
|
41887
42174
|
}]
|
|
41888
42175
|
}, {
|
|
41889
|
-
"label": "
|
|
42176
|
+
"label": "地形分析",
|
|
41890
42177
|
"props": [{
|
|
41891
42178
|
"label": "是否打开",
|
|
41892
42179
|
"key": "isOpen",
|
|
@@ -41897,62 +42184,7 @@ let getToolBoxConfig = () => {
|
|
|
41897
42184
|
"value": true
|
|
41898
42185
|
}],
|
|
41899
42186
|
"children": [{
|
|
41900
|
-
"label": "
|
|
41901
|
-
"props": [{
|
|
41902
|
-
"label": "是否置灰",
|
|
41903
|
-
"key": "disabled",
|
|
41904
|
-
"value": false
|
|
41905
|
-
}, {
|
|
41906
|
-
"label": "是否显示",
|
|
41907
|
-
"key": "isShow",
|
|
41908
|
-
"value": true
|
|
41909
|
-
}]
|
|
41910
|
-
}, {
|
|
41911
|
-
"label": "高级叠置分析",
|
|
41912
|
-
"props": [{
|
|
41913
|
-
"label": "是否置灰",
|
|
41914
|
-
"key": "disabled",
|
|
41915
|
-
"value": false
|
|
41916
|
-
}, {
|
|
41917
|
-
"label": "是否显示",
|
|
41918
|
-
"key": "isShow",
|
|
41919
|
-
"value": true
|
|
41920
|
-
}]
|
|
41921
|
-
}, {
|
|
41922
|
-
"label": "缓冲区分析",
|
|
41923
|
-
"props": [{
|
|
41924
|
-
"label": "是否置灰",
|
|
41925
|
-
"key": "disabled",
|
|
41926
|
-
"value": false
|
|
41927
|
-
}, {
|
|
41928
|
-
"label": "是否显示",
|
|
41929
|
-
"key": "isShow",
|
|
41930
|
-
"value": true
|
|
41931
|
-
}]
|
|
41932
|
-
}, {
|
|
41933
|
-
"label": "多重缓冲区分析",
|
|
41934
|
-
"props": [{
|
|
41935
|
-
"label": "是否置灰",
|
|
41936
|
-
"key": "disabled",
|
|
41937
|
-
"value": false
|
|
41938
|
-
}, {
|
|
41939
|
-
"label": "是否显示",
|
|
41940
|
-
"key": "isShow",
|
|
41941
|
-
"value": true
|
|
41942
|
-
}]
|
|
41943
|
-
}, {
|
|
41944
|
-
"label": "非对称缓冲区分析",
|
|
41945
|
-
"props": [{
|
|
41946
|
-
"label": "是否置灰",
|
|
41947
|
-
"key": "disabled",
|
|
41948
|
-
"value": false
|
|
41949
|
-
}, {
|
|
41950
|
-
"label": "是否显示",
|
|
41951
|
-
"key": "isShow",
|
|
41952
|
-
"value": true
|
|
41953
|
-
}]
|
|
41954
|
-
}, {
|
|
41955
|
-
"label": "字段缓冲区分析",
|
|
42187
|
+
"label": "地形操作",
|
|
41956
42188
|
"props": [{
|
|
41957
42189
|
"label": "是否置灰",
|
|
41958
42190
|
"key": "disabled",
|
|
@@ -41962,53 +42194,9 @@ let getToolBoxConfig = () => {
|
|
|
41962
42194
|
"key": "isShow",
|
|
41963
42195
|
"value": true
|
|
41964
42196
|
}]
|
|
41965
|
-
}, {
|
|
41966
|
-
"label": "空间关系分析",
|
|
41967
|
-
"props": [{
|
|
41968
|
-
"label": "是否置灰",
|
|
41969
|
-
"key": "disabled",
|
|
41970
|
-
"value": false
|
|
41971
|
-
}, {
|
|
41972
|
-
"label": "是否显示",
|
|
41973
|
-
"key": "isShow",
|
|
41974
|
-
"value": true
|
|
41975
|
-
}]
|
|
41976
|
-
}, {
|
|
41977
|
-
"label": "数据检查",
|
|
41978
|
-
"props": [{
|
|
41979
|
-
"label": "是否置灰",
|
|
41980
|
-
"key": "disabled",
|
|
41981
|
-
"value": false
|
|
41982
|
-
}, {
|
|
41983
|
-
"label": "是否显示",
|
|
41984
|
-
"key": "isShow",
|
|
41985
|
-
"value": true
|
|
41986
|
-
}]
|
|
41987
|
-
}]
|
|
41988
|
-
}, {
|
|
41989
|
-
"label": "网络分析",
|
|
41990
|
-
"props": [{
|
|
41991
|
-
"label": "是否打开",
|
|
41992
|
-
"key": "isOpen",
|
|
41993
|
-
"value": true
|
|
41994
|
-
}, {
|
|
41995
|
-
"label": "是否显示",
|
|
41996
|
-
"key": "isShow",
|
|
41997
|
-
"value": true
|
|
41998
|
-
}]
|
|
41999
|
-
}, {
|
|
42000
|
-
"label": "几何分析",
|
|
42001
|
-
"props": [{
|
|
42002
|
-
"label": "是否打开",
|
|
42003
|
-
"key": "isOpen",
|
|
42004
|
-
"value": true
|
|
42005
|
-
}, {
|
|
42006
|
-
"label": "是否显示",
|
|
42007
|
-
"key": "isShow",
|
|
42008
|
-
"value": true
|
|
42009
42197
|
}]
|
|
42010
42198
|
}, {
|
|
42011
|
-
"label": "
|
|
42199
|
+
"label": "三维裁剪分析",
|
|
42012
42200
|
"props": [{
|
|
42013
42201
|
"label": "是否打开",
|
|
42014
42202
|
"key": "isOpen",
|
|
@@ -42017,9 +42205,21 @@ let getToolBoxConfig = () => {
|
|
|
42017
42205
|
"label": "是否显示",
|
|
42018
42206
|
"key": "isShow",
|
|
42019
42207
|
"value": true
|
|
42208
|
+
}],
|
|
42209
|
+
"children": [{
|
|
42210
|
+
"label": "BOX裁剪",
|
|
42211
|
+
"props": [{
|
|
42212
|
+
"label": "是否打开",
|
|
42213
|
+
"key": "isOpen",
|
|
42214
|
+
"value": true
|
|
42215
|
+
}, {
|
|
42216
|
+
"label": "是否显示",
|
|
42217
|
+
"key": "isShow",
|
|
42218
|
+
"value": true
|
|
42219
|
+
}]
|
|
42020
42220
|
}]
|
|
42021
42221
|
}, {
|
|
42022
|
-
"label": "
|
|
42222
|
+
"label": "特效",
|
|
42023
42223
|
"props": [{
|
|
42024
42224
|
"label": "是否打开",
|
|
42025
42225
|
"key": "isOpen",
|
|
@@ -42028,9 +42228,21 @@ let getToolBoxConfig = () => {
|
|
|
42028
42228
|
"label": "是否显示",
|
|
42029
42229
|
"key": "isShow",
|
|
42030
42230
|
"value": true
|
|
42231
|
+
}],
|
|
42232
|
+
"children": [{
|
|
42233
|
+
"label": "天气特效",
|
|
42234
|
+
"props": [{
|
|
42235
|
+
"label": "是否打开",
|
|
42236
|
+
"key": "isOpen",
|
|
42237
|
+
"value": true
|
|
42238
|
+
}, {
|
|
42239
|
+
"label": "是否显示",
|
|
42240
|
+
"key": "isShow",
|
|
42241
|
+
"value": true
|
|
42242
|
+
}]
|
|
42031
42243
|
}]
|
|
42032
42244
|
}, {
|
|
42033
|
-
"label": "
|
|
42245
|
+
"label": "可视化",
|
|
42034
42246
|
"props": [{
|
|
42035
42247
|
"label": "是否打开",
|
|
42036
42248
|
"key": "isOpen",
|
|
@@ -42039,6 +42251,18 @@ let getToolBoxConfig = () => {
|
|
|
42039
42251
|
"label": "是否显示",
|
|
42040
42252
|
"key": "isShow",
|
|
42041
42253
|
"value": true
|
|
42254
|
+
}],
|
|
42255
|
+
"children": [{
|
|
42256
|
+
"label": "热力图",
|
|
42257
|
+
"props": [{
|
|
42258
|
+
"label": "是否打开",
|
|
42259
|
+
"key": "isOpen",
|
|
42260
|
+
"value": true
|
|
42261
|
+
}, {
|
|
42262
|
+
"label": "是否显示",
|
|
42263
|
+
"key": "isShow",
|
|
42264
|
+
"value": true
|
|
42265
|
+
}]
|
|
42042
42266
|
}]
|
|
42043
42267
|
}, {
|
|
42044
42268
|
"label": "地图输出",
|
|
@@ -43379,6 +43603,10 @@ SceneApp.install = (Vue, opts) => {
|
|
|
43379
43603
|
|
|
43380
43604
|
|
|
43381
43605
|
|
|
43606
|
+
// 台风轨迹
|
|
43607
|
+
|
|
43608
|
+
|
|
43609
|
+
|
|
43382
43610
|
|
|
43383
43611
|
|
|
43384
43612
|
|
|
@@ -43486,7 +43714,8 @@ const webglComponents = {
|
|
|
43486
43714
|
Kq3dSceneToHDImage: SceneToHDImage,
|
|
43487
43715
|
Kq3dHeatmap: Heatmap3d,
|
|
43488
43716
|
KqSceneApp: SceneApp,
|
|
43489
|
-
Kq3dSceneAdvancedToImage: SceneAdvancedToImage
|
|
43717
|
+
Kq3dSceneAdvancedToImage: SceneAdvancedToImage,
|
|
43718
|
+
Kq3dTyphoonTrac: TyphoonTrac
|
|
43490
43719
|
};
|
|
43491
43720
|
|
|
43492
43721
|
// 全局引入
|