@kq_npm/client3d_webgl_vue 4.0.9-beta → 4.1.0-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/adddata/index.js +84 -24
- package/index.js +323 -68
- package/light/index.js +1 -1
- package/limitheightanalysis/index.js +3 -1
- package/package.json +1 -1
- package/scenceview/index.js +329 -71
- package/sceneset/index.js +393 -7
- package/videofusion/index.js +49 -15
- package/videoproject/index.js +50 -21
package/index.js
CHANGED
|
@@ -88,6 +88,22 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".coord-sightline{background:rgba(42,42
|
|
|
88
88
|
/* harmony default export */ __webpack_exports__["Z"] = (___CSS_LOADER_EXPORT___);
|
|
89
89
|
|
|
90
90
|
|
|
91
|
+
/***/ }),
|
|
92
|
+
|
|
93
|
+
/***/ 825:
|
|
94
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
95
|
+
|
|
96
|
+
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(705);
|
|
97
|
+
/* 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__);
|
|
98
|
+
// Imports
|
|
99
|
+
|
|
100
|
+
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
|
|
101
|
+
// Module
|
|
102
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".cesium-performanceDisplay-defaultContainer{top:unset !important;bottom:16px;right:64px !important}", ""]);
|
|
103
|
+
// Exports
|
|
104
|
+
/* harmony default export */ __webpack_exports__["Z"] = (___CSS_LOADER_EXPORT___);
|
|
105
|
+
|
|
106
|
+
|
|
91
107
|
/***/ }),
|
|
92
108
|
|
|
93
109
|
/***/ 854:
|
|
@@ -1482,6 +1498,105 @@ class DrawManager {
|
|
|
1482
1498
|
return layerList;
|
|
1483
1499
|
}
|
|
1484
1500
|
|
|
1501
|
+
createShapeFromFeature(feature, callFun, style, isLocation) {
|
|
1502
|
+
let type = feature.geometry.type;
|
|
1503
|
+
let shape = null,
|
|
1504
|
+
coordinate = null;
|
|
1505
|
+
let positions = [];
|
|
1506
|
+
|
|
1507
|
+
switch (type) {
|
|
1508
|
+
case "Point":
|
|
1509
|
+
case "MultiPoint":
|
|
1510
|
+
coordinate = feature.geometry.coordinates;
|
|
1511
|
+
if (type === "MultiPoint") coordinate = coordinate[0];
|
|
1512
|
+
let position = Cesium.Cartesian3.fromDegrees(coordinate[0], coordinate[1]);
|
|
1513
|
+
shape = this._drawHandler.createShape(this._drawHandler.ShapeTypes.MARKER.type, '', {
|
|
1514
|
+
position: position,
|
|
1515
|
+
disableDepthTestDistance: Number.POSITIVE_INFINITY,
|
|
1516
|
+
width: 32,
|
|
1517
|
+
height: 32,
|
|
1518
|
+
image: const_image_namespaceObject.MARKER_URL
|
|
1519
|
+
});
|
|
1520
|
+
break;
|
|
1521
|
+
|
|
1522
|
+
case "LineString":
|
|
1523
|
+
case "MultiLineString":
|
|
1524
|
+
coordinate = feature.geometry.coordinates;
|
|
1525
|
+
if (type === "MultiLineString") coordinate = coordinate[0];
|
|
1526
|
+
positions = [];
|
|
1527
|
+
coordinate.forEach(arr => {
|
|
1528
|
+
positions.push(Cesium.Cartesian3.fromDegrees(arr[0], arr[1]));
|
|
1529
|
+
});
|
|
1530
|
+
shape = this._drawHandler.createShape(this._drawHandler.ShapeTypes.POLYLINE.type, '线', {
|
|
1531
|
+
controlPoints: positions,
|
|
1532
|
+
color: Cesium.Color.fromCssColorString(style.color),
|
|
1533
|
+
width: style.weight,
|
|
1534
|
+
clampToGround: true
|
|
1535
|
+
});
|
|
1536
|
+
break;
|
|
1537
|
+
|
|
1538
|
+
case "Polygon":
|
|
1539
|
+
case "MultiPolygon":
|
|
1540
|
+
coordinate = feature.geometry.coordinates[0];
|
|
1541
|
+
if (type === "MultiPolygon") coordinate = coordinate[0];
|
|
1542
|
+
positions = [];
|
|
1543
|
+
coordinate.forEach(arr => {
|
|
1544
|
+
positions.push(Cesium.Cartesian3.fromDegrees(arr[0], arr[1]));
|
|
1545
|
+
});
|
|
1546
|
+
shape = this._drawHandler.createShape(this._drawHandler.ShapeTypes.POLYGON.type, '面', {
|
|
1547
|
+
controlPoints: positions,
|
|
1548
|
+
color: Cesium.Color.fromCssColorString(style.color),
|
|
1549
|
+
width: style.weight,
|
|
1550
|
+
fillColor: Cesium.Color.fromCssColorString(style.fillColor).withAlpha(style.fillOpacity),
|
|
1551
|
+
fill: true,
|
|
1552
|
+
clampToGround: true
|
|
1553
|
+
});
|
|
1554
|
+
break;
|
|
1555
|
+
|
|
1556
|
+
default:
|
|
1557
|
+
break;
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
if (shape) {
|
|
1561
|
+
this._drawLayer.add(shape);
|
|
1562
|
+
|
|
1563
|
+
if (callFun) callFun(shape.guid);
|
|
1564
|
+
|
|
1565
|
+
if (isLocation) {
|
|
1566
|
+
setTimeout(() => {
|
|
1567
|
+
this._drawHandler.startEdit(shape);
|
|
1568
|
+
|
|
1569
|
+
let offset = new Cesium.HeadingPitchRange(0, Cesium.Math.toRadians(-90), 0);
|
|
1570
|
+
|
|
1571
|
+
this._viewer.camera.flyToBoundingSphere(shape.boundingSphere, {
|
|
1572
|
+
duration: 1.5,
|
|
1573
|
+
offset
|
|
1574
|
+
});
|
|
1575
|
+
}, 200);
|
|
1576
|
+
}
|
|
1577
|
+
}
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
startEditById(id) {
|
|
1581
|
+
let shape = this._drawLayer.getById(id);
|
|
1582
|
+
|
|
1583
|
+
if (shape) {
|
|
1584
|
+
this._drawHandler.startEdit(shape);
|
|
1585
|
+
}
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
getFeatureById(id) {
|
|
1589
|
+
let feature = null;
|
|
1590
|
+
|
|
1591
|
+
let shape = this._drawLayer.getById(id);
|
|
1592
|
+
|
|
1593
|
+
if (shape) {
|
|
1594
|
+
feature = shapeToGeoFeature(shape);
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
return feature;
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1485
1600
|
removeGeometryById(id) {
|
|
1486
1601
|
this._drawLayer.removeById(id); // 删除图形关联的样式设置框
|
|
1487
1602
|
|
|
@@ -11634,7 +11749,9 @@ class LimitHeightAnalysisViewModel {
|
|
|
11634
11749
|
|
|
11635
11750
|
|
|
11636
11751
|
destroy() {
|
|
11637
|
-
this.
|
|
11752
|
+
this.clear();
|
|
11753
|
+
this._drawFinishedEventListener && this._drawFinishedEventListener();
|
|
11754
|
+
this._drawFinishedEventListener = null;
|
|
11638
11755
|
}
|
|
11639
11756
|
|
|
11640
11757
|
}
|
|
@@ -27177,6 +27294,7 @@ class AddDataViewModel {
|
|
|
27177
27294
|
break;
|
|
27178
27295
|
|
|
27179
27296
|
case "kqgis3dserver":
|
|
27297
|
+
// KQGIS 三维服务
|
|
27180
27298
|
var geojsonStyle0 = { ...this._geojsonStyle
|
|
27181
27299
|
};
|
|
27182
27300
|
|
|
@@ -27300,7 +27418,7 @@ class AddDataViewModel {
|
|
|
27300
27418
|
children: [],
|
|
27301
27419
|
lsType: "ls"
|
|
27302
27420
|
};
|
|
27303
|
-
const service = new KqGIS.Map.GetMapImageInfoService(url);
|
|
27421
|
+
const service = new window.KqGIS.Map.GetMapImageInfoService(url);
|
|
27304
27422
|
service.init(result => {
|
|
27305
27423
|
if (result.resultcode === "success") {
|
|
27306
27424
|
let list = service.collectionInfoList;
|
|
@@ -27334,31 +27452,16 @@ class AddDataViewModel {
|
|
|
27334
27452
|
} else {
|
|
27335
27453
|
console.log("解析服务原始信息失败.");
|
|
27336
27454
|
}
|
|
27337
|
-
});
|
|
27338
|
-
|
|
27339
|
-
// name: name,
|
|
27340
|
-
// url: url,
|
|
27341
|
-
// layerName: name
|
|
27342
|
-
// })
|
|
27343
|
-
// );
|
|
27344
|
-
// this.flyToLayer(layer);
|
|
27345
|
-
// node = {
|
|
27346
|
-
// guid: layer.guid,
|
|
27347
|
-
// name: name,
|
|
27348
|
-
// visible: true,
|
|
27349
|
-
// serverType: "imagerylayer",
|
|
27350
|
-
// lsType: "ls",
|
|
27351
|
-
// url: url,
|
|
27352
|
-
// addType: type,
|
|
27353
|
-
// layerName: name,
|
|
27354
|
-
// type: "Image" // 图层树显示图标使用
|
|
27355
|
-
// };
|
|
27356
|
-
// this._layerManager.addTempLayerNode(node);
|
|
27357
|
-
// cb && cb(node);
|
|
27455
|
+
});
|
|
27456
|
+
break;
|
|
27358
27457
|
|
|
27458
|
+
case "kqgisdataserver":
|
|
27459
|
+
// KQGIS 数据服务
|
|
27460
|
+
// addDataServer(url, name);
|
|
27359
27461
|
break;
|
|
27360
27462
|
|
|
27361
27463
|
case "kqgismapserver":
|
|
27464
|
+
// KQGIS 地图服务
|
|
27362
27465
|
if (loadCustom) {
|
|
27363
27466
|
loadCustom({
|
|
27364
27467
|
name,
|
|
@@ -27443,6 +27546,7 @@ class AddDataViewModel {
|
|
|
27443
27546
|
break;
|
|
27444
27547
|
|
|
27445
27548
|
case "arcgismapserver":
|
|
27549
|
+
// ARCGIS 地图服务
|
|
27446
27550
|
layer = this._viewer.imageryLayers.addImageryProvider(new Cesium.Kq3dArcGISMapServerImageryProvider({
|
|
27447
27551
|
name: name,
|
|
27448
27552
|
url: url,
|
|
@@ -27466,6 +27570,7 @@ class AddDataViewModel {
|
|
|
27466
27570
|
break;
|
|
27467
27571
|
|
|
27468
27572
|
case "mvt":
|
|
27573
|
+
// 矢量瓦片
|
|
27469
27574
|
layer = this._viewer.imageryLayers.addImageryProvider(new Cesium.Kq3dMvtImageryProviderExt({
|
|
27470
27575
|
name: name,
|
|
27471
27576
|
style: url
|
|
@@ -27489,6 +27594,7 @@ class AddDataViewModel {
|
|
|
27489
27594
|
break;
|
|
27490
27595
|
|
|
27491
27596
|
case "kqgisdataflowserver":
|
|
27597
|
+
// KQGIS 数据流服务
|
|
27492
27598
|
let guid = Cesium.createGuid();
|
|
27493
27599
|
layer = new Cesium.Kq3dDataFlowLayer(this._viewer, {
|
|
27494
27600
|
url: url,
|
|
@@ -27556,8 +27662,10 @@ class AddDataViewModel {
|
|
|
27556
27662
|
break;
|
|
27557
27663
|
|
|
27558
27664
|
case "wmts":
|
|
27559
|
-
case "kqgistileserver":
|
|
27665
|
+
case "kqgistileserver": // KQGIS 瓦片服务
|
|
27666
|
+
|
|
27560
27667
|
case "kqgisaggregationserver":
|
|
27668
|
+
// KQGIS 聚合服务
|
|
27561
27669
|
if (type === "kqgistileserver") {
|
|
27562
27670
|
if (url.indexOf("?") > 0) {
|
|
27563
27671
|
url = url.replace("?", "/wmts?");
|
|
@@ -27784,6 +27892,68 @@ class AddDataViewModel {
|
|
|
27784
27892
|
default:
|
|
27785
27893
|
break;
|
|
27786
27894
|
}
|
|
27895
|
+
} // 添加数据服务
|
|
27896
|
+
|
|
27897
|
+
|
|
27898
|
+
addDataServer(url, name) {
|
|
27899
|
+
window.KqGIS.datasourceService(url).getDatasources(async e => {
|
|
27900
|
+
if (e.result.resultcode === 'success') {
|
|
27901
|
+
let datasourceList = e.result.result.datasources;
|
|
27902
|
+
|
|
27903
|
+
if (datasourceList) {
|
|
27904
|
+
for (let i = 0; i < datasourceList.length; i++) {
|
|
27905
|
+
await _getDatasetList(url, datasourceList[i].datasourceName);
|
|
27906
|
+
}
|
|
27907
|
+
}
|
|
27908
|
+
} else {
|
|
27909
|
+
console.error(e);
|
|
27910
|
+
}
|
|
27911
|
+
}, err => {
|
|
27912
|
+
console.error(err);
|
|
27913
|
+
});
|
|
27914
|
+
}
|
|
27915
|
+
|
|
27916
|
+
_getDatasetList(url, dataSourceName) {
|
|
27917
|
+
let params = new window.KqGIS.Data.GetDatasetsInfoParams({
|
|
27918
|
+
datasourceName: dataSourceName
|
|
27919
|
+
});
|
|
27920
|
+
return new Promise((resolve, reject) => {
|
|
27921
|
+
window.KqGIS.datasetService(url).getDatasets(params, e => {
|
|
27922
|
+
if (e.result.resultcode === 'success') {
|
|
27923
|
+
resolve(e.result.result.datasets);
|
|
27924
|
+
} else {
|
|
27925
|
+
console.error(e);
|
|
27926
|
+
reject([]);
|
|
27927
|
+
}
|
|
27928
|
+
}, err => {
|
|
27929
|
+
console.error(err);
|
|
27930
|
+
reject([]);
|
|
27931
|
+
});
|
|
27932
|
+
});
|
|
27933
|
+
}
|
|
27934
|
+
|
|
27935
|
+
_getFeatureList(url, datasourceName, datasetName) {
|
|
27936
|
+
let params = new window.KqGIS.Data.GetFeaturesParamsBase({
|
|
27937
|
+
datasourceName: datasourceName,
|
|
27938
|
+
datasetName: datasetName,
|
|
27939
|
+
hasGeometry: true,
|
|
27940
|
+
returnContent: true,
|
|
27941
|
+
outSRS: 'EPSG:4326'
|
|
27942
|
+
});
|
|
27943
|
+
return new Promise((resolve, reject) => {
|
|
27944
|
+
window.KqGIS.dataFeatureService(url).getFeatureList(params, e => {
|
|
27945
|
+
if (e.result.resultcode === 'success') {
|
|
27946
|
+
e.result.result['datasetName'] = datasetName;
|
|
27947
|
+
resolve(e.result.result);
|
|
27948
|
+
} else {
|
|
27949
|
+
console.error(e);
|
|
27950
|
+
reject(null);
|
|
27951
|
+
}
|
|
27952
|
+
}, err => {
|
|
27953
|
+
console.error(err);
|
|
27954
|
+
resolve(null);
|
|
27955
|
+
});
|
|
27956
|
+
});
|
|
27787
27957
|
}
|
|
27788
27958
|
|
|
27789
27959
|
flyToLayer(layer) {
|
|
@@ -28037,7 +28207,14 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
28037
28207
|
namePlaceholder: language.value.optional,
|
|
28038
28208
|
urlPlaceholder: language.value.format + ":http://<host>:<port>/kqgis/rest/services/<servername>/map",
|
|
28039
28209
|
description: language.value.imagertyMapServerdescription
|
|
28040
|
-
}, {
|
|
28210
|
+
}, // {
|
|
28211
|
+
// type: "kqgisdataserver",
|
|
28212
|
+
// name: language.value.KQGISDataServer,
|
|
28213
|
+
// namePlaceholder: language.value.optional,
|
|
28214
|
+
// urlPlaceholder: language.value.format + ":http://<host>:<port>/kqgis/rest/services/<servername>/data",
|
|
28215
|
+
// description: language.value.imagertyDataServerdescription
|
|
28216
|
+
// },
|
|
28217
|
+
{
|
|
28041
28218
|
type: "kqgisimageserver",
|
|
28042
28219
|
name: language.value.KQGISImageServer,
|
|
28043
28220
|
namePlaceholder: language.value.optional,
|
|
@@ -32689,11 +32866,14 @@ class VideoProjectViewModel {
|
|
|
32689
32866
|
project() {
|
|
32690
32867
|
this.clear();
|
|
32691
32868
|
let position = Cesium.Cartesian3.clone(this._viewer.camera.positionWC);
|
|
32869
|
+
this._options.heading = this._viewer.camera.heading;
|
|
32870
|
+
this._options.pitch = this._viewer.camera.pitch;
|
|
32871
|
+
this._options.roll = this._viewer.camera.roll;
|
|
32692
32872
|
let options = {
|
|
32693
32873
|
position: position,
|
|
32694
|
-
heading:
|
|
32695
|
-
pitch:
|
|
32696
|
-
roll:
|
|
32874
|
+
heading: this._options.heading,
|
|
32875
|
+
pitch: this._options.pitch,
|
|
32876
|
+
roll: this._options.roll,
|
|
32697
32877
|
fov: Cesium.Math.toRadians(this._options.fov),
|
|
32698
32878
|
aspectRatio: this._options.aspectRatio,
|
|
32699
32879
|
far: this._options.far,
|
|
@@ -32722,6 +32902,15 @@ class VideoProjectViewModel {
|
|
|
32722
32902
|
height: cartographic.height
|
|
32723
32903
|
};
|
|
32724
32904
|
}
|
|
32905
|
+
} // 获取HeadingPitchRoll
|
|
32906
|
+
|
|
32907
|
+
|
|
32908
|
+
getHeadingPitchRoll() {
|
|
32909
|
+
return {
|
|
32910
|
+
heading: Math.round(Cesium.Math.toDegrees(this._options.heading)),
|
|
32911
|
+
pitch: Math.round(Cesium.Math.toDegrees(this._options.pitch)),
|
|
32912
|
+
roll: Math.round(Cesium.Math.toDegrees(this._options.roll))
|
|
32913
|
+
};
|
|
32725
32914
|
} //飞入
|
|
32726
32915
|
|
|
32727
32916
|
|
|
@@ -32730,9 +32919,9 @@ class VideoProjectViewModel {
|
|
|
32730
32919
|
this._viewer.camera.flyTo({
|
|
32731
32920
|
destination: this._projectVideo.position,
|
|
32732
32921
|
orientation: {
|
|
32733
|
-
heading:
|
|
32734
|
-
pitch:
|
|
32735
|
-
roll:
|
|
32922
|
+
heading: this._options.heading,
|
|
32923
|
+
pitch: this._options.pitch,
|
|
32924
|
+
roll: this._options.roll
|
|
32736
32925
|
}
|
|
32737
32926
|
});
|
|
32738
32927
|
}
|
|
@@ -32887,9 +33076,6 @@ const VideoProjectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
32887
33076
|
expose
|
|
32888
33077
|
}) {
|
|
32889
33078
|
const props = __props;
|
|
32890
|
-
const {
|
|
32891
|
-
proxy
|
|
32892
|
-
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.getCurrentInstance)();
|
|
32893
33079
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)({});
|
|
32894
33080
|
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)(""); // 获取组件传参
|
|
32895
33081
|
|
|
@@ -32905,18 +33091,20 @@ const VideoProjectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
32905
33091
|
height: 0,
|
|
32906
33092
|
minHeight: -heightOffset,
|
|
32907
33093
|
maxHeight: heightOffset,
|
|
33094
|
+
heading: 0,
|
|
33095
|
+
pitch: 0,
|
|
33096
|
+
roll: 0,
|
|
32908
33097
|
videoPath: props.settingParams && props.settingParams.videoPath || "",
|
|
32909
33098
|
projectType: props.settingParams && props.settingParams.projectType || 1,
|
|
32910
33099
|
fov: props.settingParams && props.settingParams.fov || 20,
|
|
32911
33100
|
aspectRatio: props.settingParams && props.settingParams.aspectRatio || 1.6,
|
|
32912
33101
|
far: props.settingParams && props.settingParams.far || 50,
|
|
32913
|
-
heading: props.settingParams && props.settingParams.heading || 330,
|
|
32914
|
-
pitch: props.settingParams && props.settingParams.pitch || -12,
|
|
32915
|
-
roll: props.settingParams && props.settingParams.roll || 0,
|
|
32916
33102
|
showHideLine: props.settingParams && props.settingParams.showHideLine !== undefined || true
|
|
32917
33103
|
}); // 显示坐标
|
|
32918
33104
|
|
|
32919
|
-
let showCoordinate = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)(false);
|
|
33105
|
+
let showCoordinate = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)(false); // 显示朝向角俯仰角翻转角
|
|
33106
|
+
|
|
33107
|
+
let showHpr = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)(false);
|
|
32920
33108
|
let viewModel = null; // 组件容器Ref
|
|
32921
33109
|
|
|
32922
33110
|
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)(null); // 生成组件默认header
|
|
@@ -32951,9 +33139,6 @@ const VideoProjectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
32951
33139
|
fov: formItem.fov,
|
|
32952
33140
|
aspectRatio: formItem.aspectRatio,
|
|
32953
33141
|
far: formItem.far,
|
|
32954
|
-
heading: formItem.heading,
|
|
32955
|
-
pitch: formItem.pitch,
|
|
32956
|
-
roll: formItem.roll,
|
|
32957
33142
|
showHideLine: formItem.showHideLine
|
|
32958
33143
|
};
|
|
32959
33144
|
viewModel = new VideoProjectViewModel(scenceView, options);
|
|
@@ -33038,9 +33223,11 @@ const VideoProjectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
33038
33223
|
if (viewModel) {
|
|
33039
33224
|
viewModel.project();
|
|
33040
33225
|
setCoordinate();
|
|
33226
|
+
serHpr();
|
|
33041
33227
|
}
|
|
33042
33228
|
}
|
|
33043
|
-
}
|
|
33229
|
+
} // 设置坐标
|
|
33230
|
+
|
|
33044
33231
|
|
|
33045
33232
|
function setCoordinate() {
|
|
33046
33233
|
let coordinate = viewModel.getProjectCoordinate();
|
|
@@ -33057,6 +33244,18 @@ const VideoProjectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
33057
33244
|
formItem.maxHeight = coordinate.height + heightOffset;
|
|
33058
33245
|
showCoordinate.value = true;
|
|
33059
33246
|
}
|
|
33247
|
+
} // 设置朝向角俯仰角翻转角
|
|
33248
|
+
|
|
33249
|
+
|
|
33250
|
+
function serHpr() {
|
|
33251
|
+
let hpr = viewModel.getHeadingPitchRoll();
|
|
33252
|
+
|
|
33253
|
+
if (hpr) {
|
|
33254
|
+
formItem.heading = hpr.heading;
|
|
33255
|
+
formItem.pitch = hpr.pitch;
|
|
33256
|
+
formItem.roll = hpr.roll;
|
|
33257
|
+
showHpr.value = true;
|
|
33258
|
+
}
|
|
33060
33259
|
} // 飞入
|
|
33061
33260
|
|
|
33062
33261
|
|
|
@@ -33067,6 +33266,7 @@ const VideoProjectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
33067
33266
|
|
|
33068
33267
|
function clearResult() {
|
|
33069
33268
|
showCoordinate.value = false;
|
|
33269
|
+
showHpr.value = false;
|
|
33070
33270
|
viewModel && viewModel.clear();
|
|
33071
33271
|
} // 销毁
|
|
33072
33272
|
|
|
@@ -33588,7 +33788,7 @@ const VideoProjectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
33588
33788
|
_: 1
|
|
33589
33789
|
/* STABLE */
|
|
33590
33790
|
|
|
33591
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
33791
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
33592
33792
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_form_item, {
|
|
33593
33793
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).heading
|
|
33594
33794
|
}, {
|
|
@@ -33644,7 +33844,9 @@ const VideoProjectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
33644
33844
|
_: 1
|
|
33645
33845
|
/* STABLE */
|
|
33646
33846
|
|
|
33647
|
-
}
|
|
33847
|
+
}, 512
|
|
33848
|
+
/* NEED_PATCH */
|
|
33849
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(showHpr)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
33648
33850
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_form_item, {
|
|
33649
33851
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).pitch
|
|
33650
33852
|
}, {
|
|
@@ -33700,7 +33902,9 @@ const VideoProjectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
33700
33902
|
_: 1
|
|
33701
33903
|
/* STABLE */
|
|
33702
33904
|
|
|
33703
|
-
}
|
|
33905
|
+
}, 512
|
|
33906
|
+
/* NEED_PATCH */
|
|
33907
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(showHpr)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
33704
33908
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_form_item, {
|
|
33705
33909
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).roll
|
|
33706
33910
|
}, {
|
|
@@ -33756,7 +33960,9 @@ const VideoProjectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
33756
33960
|
_: 1
|
|
33757
33961
|
/* STABLE */
|
|
33758
33962
|
|
|
33759
|
-
}
|
|
33963
|
+
}, 512
|
|
33964
|
+
/* NEED_PATCH */
|
|
33965
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(showHpr)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, {
|
|
33760
33966
|
style: {
|
|
33761
33967
|
"margin-bottom": "8px"
|
|
33762
33968
|
}
|
|
@@ -33903,11 +34109,20 @@ class VideoFusiontViewModel {
|
|
|
33903
34109
|
|
|
33904
34110
|
|
|
33905
34111
|
fusion() {
|
|
34112
|
+
let type = 3;
|
|
34113
|
+
|
|
34114
|
+
if (this._options.videoPath.indexOf('.m3u8') > 0) {
|
|
34115
|
+
type = 5;
|
|
34116
|
+
}
|
|
34117
|
+
|
|
33906
34118
|
this.clear();
|
|
33907
34119
|
let cartographic = Cesium.Cartographic.fromCartesian(this._viewer.camera.positionWC);
|
|
34120
|
+
this._options.heading = Cesium.Math.toDegrees(this._viewer.camera.heading);
|
|
34121
|
+
this._options.pitch = Cesium.Math.toDegrees(this._viewer.camera.pitch);
|
|
34122
|
+
this._options.roll = Cesium.Math.toDegrees(this._viewer.camera.roll);
|
|
33908
34123
|
var param = {
|
|
33909
34124
|
url: this._options.videoPath,
|
|
33910
|
-
type:
|
|
34125
|
+
type: type,
|
|
33911
34126
|
position: {
|
|
33912
34127
|
x: Cesium.Math.toDegrees(cartographic.longitude),
|
|
33913
34128
|
y: Cesium.Math.toDegrees(cartographic.latitude),
|
|
@@ -33937,6 +34152,15 @@ class VideoFusiontViewModel {
|
|
|
33937
34152
|
if (this._videoFusion) {
|
|
33938
34153
|
return this._videoFusion.param.position;
|
|
33939
34154
|
}
|
|
34155
|
+
} // 获取HeadingPitchRoll
|
|
34156
|
+
|
|
34157
|
+
|
|
34158
|
+
getHeadingPitchRoll() {
|
|
34159
|
+
return {
|
|
34160
|
+
heading: Math.round(this._options.heading),
|
|
34161
|
+
pitch: Math.round(this._options.pitch),
|
|
34162
|
+
roll: Math.round(this._options.roll)
|
|
34163
|
+
};
|
|
33940
34164
|
} //飞入
|
|
33941
34165
|
|
|
33942
34166
|
|
|
@@ -34134,9 +34358,6 @@ const VideoFusionvue_type_script_setup_true_lang_js_default_ = {
|
|
|
34134
34358
|
expose
|
|
34135
34359
|
}) {
|
|
34136
34360
|
const props = __props;
|
|
34137
|
-
const {
|
|
34138
|
-
proxy
|
|
34139
|
-
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.getCurrentInstance)();
|
|
34140
34361
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)({});
|
|
34141
34362
|
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)(""); // 获取组件传参
|
|
34142
34363
|
|
|
@@ -34155,15 +34376,17 @@ const VideoFusionvue_type_script_setup_true_lang_js_default_ = {
|
|
|
34155
34376
|
videoPath: props.settingParams && props.settingParams.videoPath || "",
|
|
34156
34377
|
fov: props.settingParams && props.settingParams.fov || 40,
|
|
34157
34378
|
far: props.settingParams && props.settingParams.far || 50,
|
|
34158
|
-
heading:
|
|
34159
|
-
pitch:
|
|
34160
|
-
roll:
|
|
34379
|
+
heading: 0,
|
|
34380
|
+
pitch: 0,
|
|
34381
|
+
roll: 0,
|
|
34161
34382
|
alpha: props.settingParams && props.settingParams.alpha || 1.0,
|
|
34162
34383
|
eclosion: props.settingParams && props.settingParams.eclosion || 0.5,
|
|
34163
34384
|
showHideLine: props.settingParams && props.settingParams.showHideLine !== undefined || false
|
|
34164
34385
|
}); // 显示坐标
|
|
34165
34386
|
|
|
34166
|
-
let showCoordinate = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)(false);
|
|
34387
|
+
let showCoordinate = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)(false); // 显示朝向角俯仰角翻转角
|
|
34388
|
+
|
|
34389
|
+
let showHpr = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)(false);
|
|
34167
34390
|
let viewModel = null; // 组件容器Ref
|
|
34168
34391
|
|
|
34169
34392
|
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)(null); // 生成组件默认header
|
|
@@ -34196,9 +34419,6 @@ const VideoFusionvue_type_script_setup_true_lang_js_default_ = {
|
|
|
34196
34419
|
videoPath: formItem.videoPath,
|
|
34197
34420
|
fov: formItem.fov,
|
|
34198
34421
|
far: formItem.far,
|
|
34199
|
-
heading: formItem.heading,
|
|
34200
|
-
pitch: formItem.pitch,
|
|
34201
|
-
roll: formItem.roll,
|
|
34202
34422
|
alpha: formItem.alpha,
|
|
34203
34423
|
eclosion: formItem.eclosion,
|
|
34204
34424
|
showHideLine: formItem.showHideLine
|
|
@@ -34285,6 +34505,7 @@ const VideoFusionvue_type_script_setup_true_lang_js_default_ = {
|
|
|
34285
34505
|
if (viewModel) {
|
|
34286
34506
|
viewModel.fusion();
|
|
34287
34507
|
setCoordinate();
|
|
34508
|
+
serHpr();
|
|
34288
34509
|
}
|
|
34289
34510
|
}
|
|
34290
34511
|
}
|
|
@@ -34304,6 +34525,18 @@ const VideoFusionvue_type_script_setup_true_lang_js_default_ = {
|
|
|
34304
34525
|
formItem.maxHeight = coordinate.z + heightOffset;
|
|
34305
34526
|
showCoordinate.value = true;
|
|
34306
34527
|
}
|
|
34528
|
+
} // 设置朝向角俯仰角翻转角
|
|
34529
|
+
|
|
34530
|
+
|
|
34531
|
+
function serHpr() {
|
|
34532
|
+
let hpr = viewModel.getHeadingPitchRoll();
|
|
34533
|
+
|
|
34534
|
+
if (hpr) {
|
|
34535
|
+
formItem.heading = hpr.heading;
|
|
34536
|
+
formItem.pitch = hpr.pitch;
|
|
34537
|
+
formItem.roll = hpr.roll;
|
|
34538
|
+
showHpr.value = true;
|
|
34539
|
+
}
|
|
34307
34540
|
} // 飞入
|
|
34308
34541
|
|
|
34309
34542
|
|
|
@@ -34314,6 +34547,7 @@ const VideoFusionvue_type_script_setup_true_lang_js_default_ = {
|
|
|
34314
34547
|
|
|
34315
34548
|
function clearResult() {
|
|
34316
34549
|
showCoordinate.value = false;
|
|
34550
|
+
showHpr.value = false;
|
|
34317
34551
|
viewModel && viewModel.clear();
|
|
34318
34552
|
} // 销毁
|
|
34319
34553
|
|
|
@@ -34720,7 +34954,7 @@ const VideoFusionvue_type_script_setup_true_lang_js_default_ = {
|
|
|
34720
34954
|
_: 1
|
|
34721
34955
|
/* STABLE */
|
|
34722
34956
|
|
|
34723
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
34957
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
34724
34958
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_form_item, {
|
|
34725
34959
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).heading
|
|
34726
34960
|
}, {
|
|
@@ -34776,7 +35010,9 @@ const VideoFusionvue_type_script_setup_true_lang_js_default_ = {
|
|
|
34776
35010
|
_: 1
|
|
34777
35011
|
/* STABLE */
|
|
34778
35012
|
|
|
34779
|
-
}
|
|
35013
|
+
}, 512
|
|
35014
|
+
/* NEED_PATCH */
|
|
35015
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(showHpr)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
34780
35016
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_form_item, {
|
|
34781
35017
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).pitch
|
|
34782
35018
|
}, {
|
|
@@ -34832,7 +35068,9 @@ const VideoFusionvue_type_script_setup_true_lang_js_default_ = {
|
|
|
34832
35068
|
_: 1
|
|
34833
35069
|
/* STABLE */
|
|
34834
35070
|
|
|
34835
|
-
}
|
|
35071
|
+
}, 512
|
|
35072
|
+
/* NEED_PATCH */
|
|
35073
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(showHpr)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
34836
35074
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_form_item, {
|
|
34837
35075
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).roll
|
|
34838
35076
|
}, {
|
|
@@ -34888,7 +35126,9 @@ const VideoFusionvue_type_script_setup_true_lang_js_default_ = {
|
|
|
34888
35126
|
_: 1
|
|
34889
35127
|
/* STABLE */
|
|
34890
35128
|
|
|
34891
|
-
}
|
|
35129
|
+
}, 512
|
|
35130
|
+
/* NEED_PATCH */
|
|
35131
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(showHpr)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
34892
35132
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_form_item, {
|
|
34893
35133
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).transparents
|
|
34894
35134
|
}, {
|
|
@@ -35178,6 +35418,7 @@ class SceneSetViewModel {
|
|
|
35178
35418
|
|
|
35179
35419
|
this._viewer = viewer;
|
|
35180
35420
|
this._defaultSkyBox = viewer.scene.skyBox;
|
|
35421
|
+
this._undergroundManager = new Cesium.Kq3dUndergroundManager(this._viewer.scene);
|
|
35181
35422
|
} // 获取场景内容
|
|
35182
35423
|
|
|
35183
35424
|
|
|
@@ -35533,8 +35774,6 @@ class SceneSetViewModel {
|
|
|
35533
35774
|
|
|
35534
35775
|
|
|
35535
35776
|
showGrid(type) {
|
|
35536
|
-
console.log(this._viewer.scene.kq3dUndergroundManager);
|
|
35537
|
-
|
|
35538
35777
|
if (this._gridLayer) {
|
|
35539
35778
|
this._viewer.imageryLayers.remove(this._gridLayer);
|
|
35540
35779
|
|
|
@@ -35558,10 +35797,6 @@ class SceneSetViewModel {
|
|
|
35558
35797
|
|
|
35559
35798
|
|
|
35560
35799
|
openUnderground(isOpen) {
|
|
35561
|
-
if (!this._undergroundManager) {
|
|
35562
|
-
this._undergroundManager = new Cesium.Kq3dUndergroundManager(this._viewer.scene);
|
|
35563
|
-
}
|
|
35564
|
-
|
|
35565
35800
|
this._undergroundManager.undergroundEnabled = isOpen;
|
|
35566
35801
|
this._undergroundManager.transparentEnabled = isOpen;
|
|
35567
35802
|
} // 设置地表透明度
|
|
@@ -37035,10 +37270,30 @@ const SceneSetvue_type_script_setup_true_lang_js_default_ = {
|
|
|
37035
37270
|
}));
|
|
37036
37271
|
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=script&setup=true&lang=js
|
|
37037
37272
|
|
|
37273
|
+
// 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=8e9dc1cc&lang=scss
|
|
37274
|
+
var SceneSetvue_type_style_index_0_id_8e9dc1cc_lang_scss = __webpack_require__(825);
|
|
37275
|
+
;// 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=8e9dc1cc&lang=scss
|
|
37276
|
+
|
|
37277
|
+
|
|
37278
|
+
|
|
37279
|
+
var SceneSetvue_type_style_index_0_id_8e9dc1cc_lang_scss_options = {};
|
|
37280
|
+
|
|
37281
|
+
SceneSetvue_type_style_index_0_id_8e9dc1cc_lang_scss_options.insert = "head";
|
|
37282
|
+
SceneSetvue_type_style_index_0_id_8e9dc1cc_lang_scss_options.singleton = false;
|
|
37283
|
+
|
|
37284
|
+
var SceneSetvue_type_style_index_0_id_8e9dc1cc_lang_scss_update = injectStylesIntoStyleTag_default()(SceneSetvue_type_style_index_0_id_8e9dc1cc_lang_scss/* default */.Z, SceneSetvue_type_style_index_0_id_8e9dc1cc_lang_scss_options);
|
|
37285
|
+
|
|
37286
|
+
|
|
37287
|
+
|
|
37288
|
+
/* harmony default export */ var sceneset_SceneSetvue_type_style_index_0_id_8e9dc1cc_lang_scss = (SceneSetvue_type_style_index_0_id_8e9dc1cc_lang_scss/* default.locals */.Z.locals || {});
|
|
37289
|
+
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue?vue&type=style&index=0&id=8e9dc1cc&lang=scss
|
|
37290
|
+
|
|
37038
37291
|
;// CONCATENATED MODULE: ./src/webgl/sceneset/SceneSet.vue
|
|
37039
37292
|
|
|
37040
37293
|
|
|
37041
37294
|
|
|
37295
|
+
;
|
|
37296
|
+
|
|
37042
37297
|
const SceneSet_exports_ = SceneSetvue_type_script_setup_true_lang_js;
|
|
37043
37298
|
|
|
37044
37299
|
/* harmony default export */ var SceneSet = (SceneSet_exports_);
|
|
@@ -37574,7 +37829,7 @@ const Lightvue_type_script_setup_true_lang_js_default_ = {
|
|
|
37574
37829
|
class: "rowclass"
|
|
37575
37830
|
}, {
|
|
37576
37831
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_form_item, {
|
|
37577
|
-
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).
|
|
37832
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).lightColor
|
|
37578
37833
|
}, {
|
|
37579
37834
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, {
|
|
37580
37835
|
style: {
|