@kq_npm/client3d_webgl_vue 2.8.8-beta → 2.9.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 +33 -34
- package/adddata/style/adddata.css +1 -1
- package/aspectanalysis/index.js +2 -2
- package/baseterraingallery/index.js +9 -9
- package/comparemap/index.js +2 -2
- package/flight/index.js +61 -7
- package/index.js +348 -212
- package/isolineanalysis/index.js +2 -2
- package/measure/index.js +103 -35
- package/measure/style/measure.css +1 -1
- package/modelselect/index.js +17 -6
- package/package.json +1 -1
- package/roller/index.js +4 -2
- package/roller/style/roller.css +1 -1
- package/scenceview/index.js +343 -207
- package/skylineanalysis/index.js +41 -41
- package/statusbar/index.js +8 -8
- package/style.css +1 -1
package/index.js
CHANGED
|
@@ -1518,6 +1518,8 @@ class LayerManager {
|
|
|
1518
1518
|
layers: layerData.id + "",
|
|
1519
1519
|
...params
|
|
1520
1520
|
}));
|
|
1521
|
+
if (layerData.style && layer) layer.style = layerData.style;
|
|
1522
|
+
if (layerData.shader && layer) layer.kq3dCustomShader = layerData.shader;
|
|
1521
1523
|
this._guidMapping[layerData.guid] = layer.guid;
|
|
1522
1524
|
layerData.visible = true;
|
|
1523
1525
|
layerData.serverType = "imagerylayer";
|
|
@@ -1824,11 +1826,11 @@ class LayerManager {
|
|
|
1824
1826
|
serverType: "3dtiles"
|
|
1825
1827
|
});
|
|
1826
1828
|
}
|
|
1827
|
-
/**
|
|
1828
|
-
* 设置多个图层的显示与隐藏 且控制树的勾选
|
|
1829
|
-
* @param ids 图层的GUID数组
|
|
1830
|
-
* @param visible true, false
|
|
1831
|
-
* @param eventTarget 触发方法的对象。该方法有执行其他监听事件,为防止方法死循环,该参数会传给监听事件
|
|
1829
|
+
/**
|
|
1830
|
+
* 设置多个图层的显示与隐藏 且控制树的勾选
|
|
1831
|
+
* @param ids 图层的GUID数组
|
|
1832
|
+
* @param visible true, false
|
|
1833
|
+
* @param eventTarget 触发方法的对象。该方法有执行其他监听事件,为防止方法死循环,该参数会传给监听事件
|
|
1832
1834
|
*/
|
|
1833
1835
|
|
|
1834
1836
|
|
|
@@ -2106,8 +2108,8 @@ class LayerManager {
|
|
|
2106
2108
|
|
|
2107
2109
|
return checkedKeys;
|
|
2108
2110
|
}
|
|
2109
|
-
/**
|
|
2110
|
-
* 获取勾选图层的图层数据,如果是有融合图层,则只返回融合图层的子图层
|
|
2111
|
+
/**
|
|
2112
|
+
* 获取勾选图层的图层数据,如果是有融合图层,则只返回融合图层的子图层
|
|
2111
2113
|
*/
|
|
2112
2114
|
|
|
2113
2115
|
|
|
@@ -2381,12 +2383,12 @@ class LayerManager {
|
|
|
2381
2383
|
|
|
2382
2384
|
this._viewer.terrainProvider = terrainProvider;
|
|
2383
2385
|
}
|
|
2384
|
-
/**
|
|
2385
|
-
* 删除临时添加数据
|
|
2386
|
-
* 移除渲染图层
|
|
2387
|
-
* 删除 _layerTreeData的临时图层数据
|
|
2388
|
-
* 删除 _layerListData的临时图层数据
|
|
2389
|
-
* @param guid
|
|
2386
|
+
/**
|
|
2387
|
+
* 删除临时添加数据
|
|
2388
|
+
* 移除渲染图层
|
|
2389
|
+
* 删除 _layerTreeData的临时图层数据
|
|
2390
|
+
* 删除 _layerListData的临时图层数据
|
|
2391
|
+
* @param guid
|
|
2390
2392
|
*/
|
|
2391
2393
|
|
|
2392
2394
|
|
|
@@ -2472,10 +2474,10 @@ class LayerManager {
|
|
|
2472
2474
|
}
|
|
2473
2475
|
|
|
2474
2476
|
}
|
|
2475
|
-
/**
|
|
2476
|
-
* 根据guid获取子节点guid集合
|
|
2477
|
-
* @param data
|
|
2478
|
-
* @param guid
|
|
2477
|
+
/**
|
|
2478
|
+
* 根据guid获取子节点guid集合
|
|
2479
|
+
* @param data
|
|
2480
|
+
* @param guid
|
|
2479
2481
|
*/
|
|
2480
2482
|
|
|
2481
2483
|
function getChildrenByGuid(data, guid, guids, addChildren = false) {
|
|
@@ -2493,10 +2495,10 @@ function getChildrenByGuid(data, guid, guids, addChildren = false) {
|
|
|
2493
2495
|
}
|
|
2494
2496
|
}
|
|
2495
2497
|
}
|
|
2496
|
-
/**
|
|
2497
|
-
* 根据guid删除树节点数据,包含子节点也删除
|
|
2498
|
-
* @param data
|
|
2499
|
-
* @param guid
|
|
2498
|
+
/**
|
|
2499
|
+
* 根据guid删除树节点数据,包含子节点也删除
|
|
2500
|
+
* @param data
|
|
2501
|
+
* @param guid
|
|
2500
2502
|
*/
|
|
2501
2503
|
|
|
2502
2504
|
|
|
@@ -2741,11 +2743,11 @@ class ScenceViewViewModel extends (mitt_default()) {
|
|
|
2741
2743
|
|
|
2742
2744
|
return layer;
|
|
2743
2745
|
}
|
|
2744
|
-
/**
|
|
2745
|
-
* 操作底图显隐的方法
|
|
2746
|
-
* @param layerKey 存储图层信息的key
|
|
2747
|
-
* @param layerInfo 创建图层的参数信息对象
|
|
2748
|
-
* @param visible 显隐
|
|
2746
|
+
/**
|
|
2747
|
+
* 操作底图显隐的方法
|
|
2748
|
+
* @param layerKey 存储图层信息的key
|
|
2749
|
+
* @param layerInfo 创建图层的参数信息对象
|
|
2750
|
+
* @param visible 显隐
|
|
2749
2751
|
*/
|
|
2750
2752
|
|
|
2751
2753
|
|
|
@@ -2872,10 +2874,10 @@ class ScenceViewViewModel extends (mitt_default()) {
|
|
|
2872
2874
|
|
|
2873
2875
|
return layer;
|
|
2874
2876
|
}
|
|
2875
|
-
/**
|
|
2876
|
-
* 操作在线底图,添加显示隐藏图层
|
|
2877
|
-
* @param {Object} layerConfig 图层数据
|
|
2878
|
-
* @param {boolean} visible 显隐
|
|
2877
|
+
/**
|
|
2878
|
+
* 操作在线底图,添加显示隐藏图层
|
|
2879
|
+
* @param {Object} layerConfig 图层数据
|
|
2880
|
+
* @param {boolean} visible 显隐
|
|
2879
2881
|
*/
|
|
2880
2882
|
|
|
2881
2883
|
|
|
@@ -2900,8 +2902,8 @@ class ScenceViewViewModel extends (mitt_default()) {
|
|
|
2900
2902
|
}
|
|
2901
2903
|
}
|
|
2902
2904
|
}
|
|
2903
|
-
/**
|
|
2904
|
-
* 移除所有在线底图在地图中的显示
|
|
2905
|
+
/**
|
|
2906
|
+
* 移除所有在线底图在地图中的显示
|
|
2905
2907
|
*/
|
|
2906
2908
|
|
|
2907
2909
|
|
|
@@ -2978,17 +2980,17 @@ const __default__ = {
|
|
|
2978
2980
|
},
|
|
2979
2981
|
options: Object,
|
|
2980
2982
|
|
|
2981
|
-
/**
|
|
2982
|
-
* 图层数据源
|
|
2983
|
-
* 事例:
|
|
2984
|
-
* {
|
|
2985
|
-
name: null,// 服务名称
|
|
2986
|
-
url: null,//服务地址
|
|
2987
|
-
token: null,//服务token
|
|
2988
|
-
type: "kqmapserver", //服务类型 kqmapserver或者kq3dserver
|
|
2989
|
-
isShowAllLayers: true,
|
|
2990
|
-
defaultShowLayerNames: []
|
|
2991
|
-
}
|
|
2983
|
+
/**
|
|
2984
|
+
* 图层数据源
|
|
2985
|
+
* 事例:
|
|
2986
|
+
* {
|
|
2987
|
+
name: null,// 服务名称
|
|
2988
|
+
url: null,//服务地址
|
|
2989
|
+
token: null,//服务token
|
|
2990
|
+
type: "kqmapserver", //服务类型 kqmapserver或者kq3dserver
|
|
2991
|
+
isShowAllLayers: true,
|
|
2992
|
+
defaultShowLayerNames: []
|
|
2993
|
+
}
|
|
2992
2994
|
*/
|
|
2993
2995
|
service: Object,
|
|
2994
2996
|
// ScenceView初始化的参数对象,包含初始化范围和layer信息。
|
|
@@ -3000,9 +3002,9 @@ const __default__ = {
|
|
|
3000
3002
|
default: true
|
|
3001
3003
|
},
|
|
3002
3004
|
|
|
3003
|
-
/**
|
|
3004
|
-
* 例:"top-left","top-right","bottom-left","bottom-right","left","right","bottom"
|
|
3005
|
-
* {top:'16px',left:'16px'}, {top:16,left:16}
|
|
3005
|
+
/**
|
|
3006
|
+
* 例:"top-left","top-right","bottom-left","bottom-right","left","right","bottom"
|
|
3007
|
+
* {top:'16px',left:'16px'}, {top:16,left:16}
|
|
3006
3008
|
*/
|
|
3007
3009
|
toolButtonsPosition: [String, Object],
|
|
3008
3010
|
showLogo: {
|
|
@@ -3023,12 +3025,12 @@ const __default__ = {
|
|
|
3023
3025
|
const {
|
|
3024
3026
|
proxy
|
|
3025
3027
|
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.getCurrentInstance)();
|
|
3026
|
-
/**
|
|
3027
|
-
* 支持传入属性:
|
|
3028
|
-
* target - viewer对象渲染的div的id
|
|
3029
|
-
* options - 三维球初始化属性设置
|
|
3030
|
-
* scenceUrl - 场景地址
|
|
3031
|
-
* showToolButtons - 是否显示工具栏按钮
|
|
3028
|
+
/**
|
|
3029
|
+
* 支持传入属性:
|
|
3030
|
+
* target - viewer对象渲染的div的id
|
|
3031
|
+
* options - 三维球初始化属性设置
|
|
3032
|
+
* scenceUrl - 场景地址
|
|
3033
|
+
* showToolButtons - 是否显示工具栏按钮
|
|
3032
3034
|
*/
|
|
3033
3035
|
|
|
3034
3036
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)({});
|
|
@@ -3064,8 +3066,8 @@ const __default__ = {
|
|
|
3064
3066
|
viewModel = new ScenceViewViewModel(props, _language);
|
|
3065
3067
|
viewModel.initViewer();
|
|
3066
3068
|
});
|
|
3067
|
-
/**
|
|
3068
|
-
* 获取ScenceView的逻辑类
|
|
3069
|
+
/**
|
|
3070
|
+
* 获取ScenceView的逻辑类
|
|
3069
3071
|
*/
|
|
3070
3072
|
|
|
3071
3073
|
function getViewModel() {
|
|
@@ -3809,16 +3811,16 @@ class BaseterrainGalleryViewModel {
|
|
|
3809
3811
|
subdomains: ["8", "9", "10", "11", "12"]
|
|
3810
3812
|
});
|
|
3811
3813
|
}
|
|
3812
|
-
/**
|
|
3813
|
-
* 无地形
|
|
3814
|
+
/**
|
|
3815
|
+
* 无地形
|
|
3814
3816
|
*/
|
|
3815
3817
|
|
|
3816
3818
|
|
|
3817
3819
|
terrainNo() {
|
|
3818
3820
|
this._baseterrainGallery.terrainNo = new window.Cesium.EllipsoidTerrainProvider();
|
|
3819
3821
|
}
|
|
3820
|
-
/**
|
|
3821
|
-
* cesium全球地形
|
|
3822
|
+
/**
|
|
3823
|
+
* cesium全球地形
|
|
3822
3824
|
*/
|
|
3823
3825
|
|
|
3824
3826
|
|
|
@@ -3829,16 +3831,16 @@ class BaseterrainGalleryViewModel {
|
|
|
3829
3831
|
requestWaterMask: true
|
|
3830
3832
|
});
|
|
3831
3833
|
}
|
|
3832
|
-
/**
|
|
3833
|
-
* 清理地图
|
|
3834
|
+
/**
|
|
3835
|
+
* 清理地图
|
|
3834
3836
|
*/
|
|
3835
3837
|
|
|
3836
3838
|
|
|
3837
3839
|
clear() {
|
|
3838
3840
|
this.setTerrainType(2);
|
|
3839
3841
|
}
|
|
3840
|
-
/**
|
|
3841
|
-
* 注销
|
|
3842
|
+
/**
|
|
3843
|
+
* 注销
|
|
3842
3844
|
*/
|
|
3843
3845
|
|
|
3844
3846
|
|
|
@@ -3990,7 +3992,7 @@ const BaseterrainGalleryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
3990
3992
|
span: 24
|
|
3991
3993
|
}, {
|
|
3992
3994
|
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, null, {
|
|
3993
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createCommentVNode)(" <kq-row @click=\"clickHandler(0)\" :class=\"currentIndex == 0 ? 'active' : ''\">\n <kq-col :span=\"5\">\n <img :src=\"TDT_TERRAiIN_URL\" alt=\"\" />\n </kq-col>\n <kq-col :span=\"19\">{{ language.tiandituTerrain }} </kq-col>\n </kq-row> "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, {
|
|
3995
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createCommentVNode)(" <kq-row @click=\"clickHandler(0)\" :class=\"currentIndex == 0 ? 'active' : ''\">\r\n <kq-col :span=\"5\">\r\n <img :src=\"TDT_TERRAiIN_URL\" alt=\"\" />\r\n </kq-col>\r\n <kq-col :span=\"19\">{{ language.tiandituTerrain }} </kq-col>\r\n </kq-row> "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, {
|
|
3994
3996
|
onClick: _cache[0] || (_cache[0] = $event => clickHandler(1)),
|
|
3995
3997
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(currentIndex) == 1 ? 'active' : '')
|
|
3996
3998
|
}, {
|
|
@@ -4112,6 +4114,16 @@ class MeasureViewModel {
|
|
|
4112
4114
|
|
|
4113
4115
|
azimuthMeasure() {
|
|
4114
4116
|
this._measureHandler.startMeasure(Cesium.Kq3dMeasureMode.Azimuth);
|
|
4117
|
+
} //坐标测量
|
|
4118
|
+
|
|
4119
|
+
|
|
4120
|
+
coordinateMeasure() {
|
|
4121
|
+
this._measureHandler.startMeasure(Cesium.Kq3dMeasureMode.Coordinate);
|
|
4122
|
+
} //结束测量
|
|
4123
|
+
|
|
4124
|
+
|
|
4125
|
+
stopMeasure() {
|
|
4126
|
+
this._measureHandler.stopMeasure();
|
|
4115
4127
|
} //更新距离测量单位
|
|
4116
4128
|
|
|
4117
4129
|
|
|
@@ -4205,6 +4217,7 @@ const Measurevue_type_script_setup_true_lang_js_hoisted_9 = {
|
|
|
4205
4217
|
class: "kq-measure3d-result-panel"
|
|
4206
4218
|
};
|
|
4207
4219
|
const Measurevue_type_script_setup_true_lang_js_hoisted_10 = {
|
|
4220
|
+
key: 0,
|
|
4208
4221
|
class: "panel"
|
|
4209
4222
|
};
|
|
4210
4223
|
const _hoisted_11 = {
|
|
@@ -4254,6 +4267,28 @@ const _hoisted_24 = {
|
|
|
4254
4267
|
const _hoisted_25 = {
|
|
4255
4268
|
class: "res"
|
|
4256
4269
|
};
|
|
4270
|
+
const _hoisted_26 = {
|
|
4271
|
+
class: "tit"
|
|
4272
|
+
};
|
|
4273
|
+
const _hoisted_27 = {
|
|
4274
|
+
class: "res"
|
|
4275
|
+
};
|
|
4276
|
+
const _hoisted_28 = {
|
|
4277
|
+
class: "tit"
|
|
4278
|
+
};
|
|
4279
|
+
const _hoisted_29 = {
|
|
4280
|
+
class: "res"
|
|
4281
|
+
};
|
|
4282
|
+
const _hoisted_30 = {
|
|
4283
|
+
key: 2,
|
|
4284
|
+
class: "result"
|
|
4285
|
+
};
|
|
4286
|
+
const _hoisted_31 = {
|
|
4287
|
+
class: "tit"
|
|
4288
|
+
};
|
|
4289
|
+
const _hoisted_32 = {
|
|
4290
|
+
class: "res"
|
|
4291
|
+
};
|
|
4257
4292
|
|
|
4258
4293
|
|
|
4259
4294
|
|
|
@@ -4325,9 +4360,18 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
|
|
|
4325
4360
|
angle: res.angle ? res.angle.toFixed(2) : 0
|
|
4326
4361
|
};
|
|
4327
4362
|
} else if (measureType.value === 'area') {
|
|
4328
|
-
if (res.area) result.value = formatArea(res.area);
|
|
4363
|
+
if (res && res.area) result.value = formatArea(res.area);
|
|
4329
4364
|
} else if (measureType.value === 'azimuth') {
|
|
4330
|
-
if (res.azimuth) result.value = formatAzimuth(res.azimuth);
|
|
4365
|
+
if (res && res.azimuth) result.value = formatAzimuth(res.azimuth);
|
|
4366
|
+
} else if (measureType.value === 'coordinate') {
|
|
4367
|
+
if (res && res.coordinate) {
|
|
4368
|
+
result.value = {
|
|
4369
|
+
longitude: res.coordinate.longitude ? res.coordinate.longitude.toFixed(5) : 0,
|
|
4370
|
+
latitude: res.coordinate.latitude ? res.coordinate.latitude.toFixed(5) : 0,
|
|
4371
|
+
height: res.coordinate.height ? res.coordinate.height.toFixed(2) : 0
|
|
4372
|
+
};
|
|
4373
|
+
viewModel.stopMeasure();
|
|
4374
|
+
}
|
|
4331
4375
|
}
|
|
4332
4376
|
});
|
|
4333
4377
|
viewModel.activeEvent.addEventListener(function (active) {
|
|
@@ -4382,9 +4426,9 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
|
|
|
4382
4426
|
var unit = "°";
|
|
4383
4427
|
return azimuth.toFixed(4) + " " + unit;
|
|
4384
4428
|
}
|
|
4385
|
-
/**
|
|
4386
|
-
* @description 监听单位变化操作
|
|
4387
|
-
* @param {string} unit - 单位
|
|
4429
|
+
/**
|
|
4430
|
+
* @description 监听单位变化操作
|
|
4431
|
+
* @param {string} unit - 单位
|
|
4388
4432
|
*/
|
|
4389
4433
|
|
|
4390
4434
|
|
|
@@ -4392,11 +4436,11 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
|
|
|
4392
4436
|
result.value = convertValueUnitTotal(distanceValue, unit);
|
|
4393
4437
|
viewModel && viewModel.updateDistanceUnit(distanceValue, unit);
|
|
4394
4438
|
}
|
|
4395
|
-
/**
|
|
4396
|
-
* @description 测量距离数值单位换算
|
|
4397
|
-
* @param {string} value - 原始数值
|
|
4398
|
-
* @param {string} unit - 单位
|
|
4399
|
-
* @returns {string} 新数值
|
|
4439
|
+
/**
|
|
4440
|
+
* @description 测量距离数值单位换算
|
|
4441
|
+
* @param {string} value - 原始数值
|
|
4442
|
+
* @param {string} unit - 单位
|
|
4443
|
+
* @returns {string} 新数值
|
|
4400
4444
|
*/
|
|
4401
4445
|
|
|
4402
4446
|
|
|
@@ -4439,27 +4483,24 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
|
|
|
4439
4483
|
viewModel.distanceMeasure(mode.value);
|
|
4440
4484
|
break;
|
|
4441
4485
|
|
|
4442
|
-
case "height":
|
|
4443
|
-
mode.value = "space";
|
|
4444
|
-
viewModel.heightMeasure();
|
|
4445
|
-
break;
|
|
4446
|
-
|
|
4447
4486
|
case "area":
|
|
4448
4487
|
viewModel.areaMeasure(mode.value);
|
|
4449
4488
|
break;
|
|
4450
|
-
azimuth;
|
|
4451
4489
|
|
|
4452
|
-
case "
|
|
4453
|
-
|
|
4454
|
-
|
|
4490
|
+
case "height":
|
|
4491
|
+
viewModel.heightMeasure();
|
|
4492
|
+
break;
|
|
4493
|
+
|
|
4494
|
+
case "coordinate":
|
|
4495
|
+
viewModel.coordinateMeasure();
|
|
4455
4496
|
break;
|
|
4456
4497
|
|
|
4457
4498
|
default:
|
|
4458
4499
|
break;
|
|
4459
4500
|
}
|
|
4460
4501
|
}
|
|
4461
|
-
/**
|
|
4462
|
-
* 清除测量
|
|
4502
|
+
/**
|
|
4503
|
+
* 清除测量
|
|
4463
4504
|
*/
|
|
4464
4505
|
|
|
4465
4506
|
|
|
@@ -4535,7 +4576,25 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
|
|
|
4535
4576
|
}, 8
|
|
4536
4577
|
/* PROPS */
|
|
4537
4578
|
, ["class", "title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_button, {
|
|
4538
|
-
onClick: _cache[2] || (_cache[2] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withModifiers)($event => startMeasure('
|
|
4579
|
+
onClick: _cache[2] || (_cache[2] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withModifiers)($event => startMeasure('area'), ["stop"])),
|
|
4580
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(isActive) == 'area' ? 'is-active' : null),
|
|
4581
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).area
|
|
4582
|
+
}, {
|
|
4583
|
+
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_icon, {
|
|
4584
|
+
size: 24
|
|
4585
|
+
}, {
|
|
4586
|
+
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)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(client_icons_vue_namespaceObject.IconMeasureArea))]),
|
|
4587
|
+
_: 1
|
|
4588
|
+
/* STABLE */
|
|
4589
|
+
|
|
4590
|
+
})]),
|
|
4591
|
+
_: 1
|
|
4592
|
+
/* STABLE */
|
|
4593
|
+
|
|
4594
|
+
}, 8
|
|
4595
|
+
/* PROPS */
|
|
4596
|
+
, ["class", "title"]), (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_button, {
|
|
4597
|
+
onClick: _cache[3] || (_cache[3] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withModifiers)($event => startMeasure('height'), ["stop"])),
|
|
4539
4598
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(isActive) == 'height' ? 'is-active' : null),
|
|
4540
4599
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).height
|
|
4541
4600
|
}, {
|
|
@@ -4552,15 +4611,15 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
|
|
|
4552
4611
|
|
|
4553
4612
|
}, 8
|
|
4554
4613
|
/* PROPS */
|
|
4555
|
-
, ["class", "title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_button, {
|
|
4556
|
-
onClick: _cache[
|
|
4557
|
-
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(isActive) == '
|
|
4558
|
-
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).
|
|
4614
|
+
, ["class", "title"]), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(mode) == 'space']]), (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_button, {
|
|
4615
|
+
onClick: _cache[4] || (_cache[4] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withModifiers)($event => startMeasure('coordinate'), ["stop"])),
|
|
4616
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(isActive) == 'coordinate' ? 'is-active' : null),
|
|
4617
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).coordinate
|
|
4559
4618
|
}, {
|
|
4560
4619
|
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_icon, {
|
|
4561
4620
|
size: 24
|
|
4562
4621
|
}, {
|
|
4563
|
-
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)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(client_icons_vue_namespaceObject.
|
|
4622
|
+
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)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(client_icons_vue_namespaceObject.IconGroundSurvey))]),
|
|
4564
4623
|
_: 1
|
|
4565
4624
|
/* STABLE */
|
|
4566
4625
|
|
|
@@ -4570,7 +4629,7 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
|
|
|
4570
4629
|
|
|
4571
4630
|
}, 8
|
|
4572
4631
|
/* PROPS */
|
|
4573
|
-
, ["class", "title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.
|
|
4632
|
+
, ["class", "title"]), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(mode) == 'space']]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_button, {
|
|
4574
4633
|
type: "danger",
|
|
4575
4634
|
plain: "",
|
|
4576
4635
|
onClick: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withModifiers)(clearMeasure, ["stop"]),
|
|
@@ -4594,12 +4653,11 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
|
|
|
4594
4653
|
/* TEXT */
|
|
4595
4654
|
)) : ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("p", Measurevue_type_script_setup_true_lang_js_hoisted_7, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).measureTips), 1
|
|
4596
4655
|
/* TEXT */
|
|
4597
|
-
))])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(isResult) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_8, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div", Measurevue_type_script_setup_true_lang_js_hoisted_9, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.
|
|
4656
|
+
))])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(isResult) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_8, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div", Measurevue_type_script_setup_true_lang_js_hoisted_9, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(measureType) === 'distance' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_10, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_11, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).unit), 1
|
|
4598
4657
|
/* TEXT */
|
|
4599
|
-
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.
|
|
4600
|
-
key: 0,
|
|
4658
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_select, {
|
|
4601
4659
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(distanceUnit),
|
|
4602
|
-
"onUpdate:modelValue": _cache[
|
|
4660
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.isRef)(distanceUnit) ? distanceUnit.value = $event : distanceUnit = $event),
|
|
4603
4661
|
onChange: onChangeUnit
|
|
4604
4662
|
}, {
|
|
4605
4663
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.renderList)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(distanceUnits), item => {
|
|
@@ -4618,7 +4676,7 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
|
|
|
4618
4676
|
|
|
4619
4677
|
}, 8
|
|
4620
4678
|
/* PROPS */
|
|
4621
|
-
, ["modelValue"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createCommentVNode)("v-if", true)
|
|
4679
|
+
, ["modelValue"])])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div", _hoisted_12, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_13, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).measureResult), 1
|
|
4622
4680
|
/* TEXT */
|
|
4623
4681
|
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(measureType) === 'height' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("div", _hoisted_14, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_15, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).spaceDistance), 1
|
|
4624
4682
|
/* TEXT */
|
|
@@ -4636,9 +4694,21 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
|
|
|
4636
4694
|
/* TEXT */
|
|
4637
4695
|
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_22, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(result).angle) + " °", 1
|
|
4638
4696
|
/* TEXT */
|
|
4639
|
-
)])) : ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("div", _hoisted_23, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_24, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language)
|
|
4697
|
+
)])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(measureType) === 'coordinate' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("div", _hoisted_23, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_24, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).longitude), 1
|
|
4698
|
+
/* TEXT */
|
|
4699
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_25, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(result).longitude), 1
|
|
4700
|
+
/* TEXT */
|
|
4701
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_26, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).latitude), 1
|
|
4702
|
+
/* TEXT */
|
|
4703
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_27, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(result).latitude), 1
|
|
4704
|
+
/* TEXT */
|
|
4705
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_28, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).height), 1
|
|
4706
|
+
/* TEXT */
|
|
4707
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_29, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(result).height) + " m", 1
|
|
4640
4708
|
/* TEXT */
|
|
4641
|
-
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p",
|
|
4709
|
+
)])) : ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("div", _hoisted_30, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_31, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language)[(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(measureType)]), 1
|
|
4710
|
+
/* TEXT */
|
|
4711
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", _hoisted_32, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(result)), 1
|
|
4642
4712
|
/* TEXT */
|
|
4643
4713
|
)]))])])])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createCommentVNode)("v-if", true)], 2
|
|
4644
4714
|
/* CLASS */
|
|
@@ -4815,6 +4885,18 @@ const Flightvue_type_script_setup_true_lang_js_default_ = {
|
|
|
4815
4885
|
showShadow: {
|
|
4816
4886
|
type: Boolean,
|
|
4817
4887
|
default: false
|
|
4888
|
+
},
|
|
4889
|
+
// 加载外部飞行路径数据方法
|
|
4890
|
+
loadFlightPath: {
|
|
4891
|
+
type: Function
|
|
4892
|
+
},
|
|
4893
|
+
// 外部保存飞行路径方法
|
|
4894
|
+
saveFlightPath: {
|
|
4895
|
+
type: Function
|
|
4896
|
+
},
|
|
4897
|
+
// 外部删除飞行路径方法
|
|
4898
|
+
deleteFlightPath: {
|
|
4899
|
+
type: Function
|
|
4818
4900
|
}
|
|
4819
4901
|
},
|
|
4820
4902
|
|
|
@@ -4855,7 +4937,17 @@ const Flightvue_type_script_setup_true_lang_js_default_ = {
|
|
|
4855
4937
|
pathList.forEach(path => {
|
|
4856
4938
|
path.isPlaying = false;
|
|
4857
4939
|
});
|
|
4858
|
-
});
|
|
4940
|
+
}); //加载外部数据
|
|
4941
|
+
|
|
4942
|
+
if (props.loadFlightPath) {
|
|
4943
|
+
props.loadFlightPath(dataList => {
|
|
4944
|
+
dataList = JSON.parse(JSON.stringify(dataList));
|
|
4945
|
+
dataList.forEach(path => {
|
|
4946
|
+
path.isPlaying = false;
|
|
4947
|
+
pathList.push(path);
|
|
4948
|
+
});
|
|
4949
|
+
});
|
|
4950
|
+
}
|
|
4859
4951
|
}
|
|
4860
4952
|
});
|
|
4861
4953
|
}); // 销毁
|
|
@@ -4910,7 +5002,11 @@ const Flightvue_type_script_setup_true_lang_js_default_ = {
|
|
|
4910
5002
|
pathPlayIndex = -1;
|
|
4911
5003
|
}
|
|
4912
5004
|
|
|
4913
|
-
pathList.splice(dropDownPath.index, 1);
|
|
5005
|
+
pathList.splice(dropDownPath.index, 1); // 外部删除数据
|
|
5006
|
+
|
|
5007
|
+
if (props.deleteFlightPath) {
|
|
5008
|
+
props.deleteFlightPath(dropDownPath.guid);
|
|
5009
|
+
}
|
|
4914
5010
|
}
|
|
4915
5011
|
} //路径播放
|
|
4916
5012
|
|
|
@@ -5058,15 +5154,33 @@ const Flightvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5058
5154
|
if (dropDownPath) {
|
|
5059
5155
|
var editPath = pathList[dropDownPath.index];
|
|
5060
5156
|
editPath.name = pathName.value;
|
|
5061
|
-
editPath.xmlString = xmlString;
|
|
5157
|
+
editPath.xmlString = xmlString; // 外部保存数据
|
|
5158
|
+
|
|
5159
|
+
if (props.saveFlightPath) {
|
|
5160
|
+
props.saveFlightPath({
|
|
5161
|
+
guid: editPath.guid,
|
|
5162
|
+
name: editPath.name,
|
|
5163
|
+
xmlString: editPath.xmlString
|
|
5164
|
+
});
|
|
5165
|
+
}
|
|
5062
5166
|
}
|
|
5063
5167
|
} else {
|
|
5064
5168
|
//新增路径
|
|
5065
|
-
|
|
5169
|
+
var path = {
|
|
5170
|
+
guid: Cesium.createGuid(),
|
|
5066
5171
|
name: pathName.value,
|
|
5067
5172
|
xmlString: xmlString,
|
|
5068
5173
|
isPlaying: false
|
|
5069
|
-
}
|
|
5174
|
+
};
|
|
5175
|
+
pathList.push(path); // 外部保存数据
|
|
5176
|
+
|
|
5177
|
+
if (props.saveFlightPath) {
|
|
5178
|
+
props.saveFlightPath({
|
|
5179
|
+
guid: path.guid,
|
|
5180
|
+
name: path.name,
|
|
5181
|
+
xmlString: path.xmlString
|
|
5182
|
+
});
|
|
5183
|
+
}
|
|
5070
5184
|
}
|
|
5071
5185
|
|
|
5072
5186
|
cancel();
|
|
@@ -5088,11 +5202,21 @@ const Flightvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5088
5202
|
var name = file.name.split(".")[0];
|
|
5089
5203
|
viewModel.fromXmlFile(file.raw).then(() => {
|
|
5090
5204
|
var xmlString = viewModel.asXmlString();
|
|
5091
|
-
|
|
5205
|
+
var path = {
|
|
5206
|
+
guid: Cesium.createGuid(),
|
|
5092
5207
|
name: name,
|
|
5093
5208
|
xmlString: xmlString,
|
|
5094
5209
|
isPlaying: false
|
|
5095
|
-
}
|
|
5210
|
+
};
|
|
5211
|
+
pathList.push(path); // 外部保存数据
|
|
5212
|
+
|
|
5213
|
+
if (props.saveFlightPath) {
|
|
5214
|
+
props.saveFlightPath({
|
|
5215
|
+
guid: path.guid,
|
|
5216
|
+
name: path.name,
|
|
5217
|
+
xmlString: path.xmlString
|
|
5218
|
+
});
|
|
5219
|
+
}
|
|
5096
5220
|
});
|
|
5097
5221
|
} //导出文件
|
|
5098
5222
|
|
|
@@ -6473,6 +6597,8 @@ class ModelSelectViewModel {
|
|
|
6473
6597
|
|
|
6474
6598
|
_defineProperty(this, "_highlight", null);
|
|
6475
6599
|
|
|
6600
|
+
_defineProperty(this, "_modeFiled", 'id');
|
|
6601
|
+
|
|
6476
6602
|
this._viewer = scenceView._viewer;
|
|
6477
6603
|
this._drawManager = scenceView._drawManager;
|
|
6478
6604
|
this._handler = new Cesium.ScreenSpaceEventHandler(this._viewer.scene.canvas);
|
|
@@ -6487,13 +6613,13 @@ class ModelSelectViewModel {
|
|
|
6487
6613
|
if (pickedObject instanceof Cesium.Cesium3DTileFeature) {
|
|
6488
6614
|
let properties = pickedObject.getPropertyNames() || [];
|
|
6489
6615
|
|
|
6490
|
-
if (properties.indexOf(
|
|
6491
|
-
let id = pickedObject.getProperty(
|
|
6492
|
-
|
|
6616
|
+
if (properties.indexOf(that._modeFiled) > -1) {
|
|
6617
|
+
let id = pickedObject.getProperty(that._modeFiled); // that.clear();
|
|
6618
|
+
|
|
6493
6619
|
that._highlight = new Cesium.Kq3dHighlight({
|
|
6494
6620
|
viewer: that._viewer,
|
|
6495
6621
|
tileset: pickedObject.tileset,
|
|
6496
|
-
attrName:
|
|
6622
|
+
attrName: that._modeFiled,
|
|
6497
6623
|
attrValue: [id],
|
|
6498
6624
|
color: [Cesium.Color.RED]
|
|
6499
6625
|
});
|
|
@@ -6571,7 +6697,11 @@ const ModelSelectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6571
6697
|
/* harmony default export */ var ModelSelectvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(ModelSelectvue_type_script_setup_true_lang_js_default_, {
|
|
6572
6698
|
props: {
|
|
6573
6699
|
//指定组件绑定的viewer对象的div的id
|
|
6574
|
-
mapTarget: String
|
|
6700
|
+
mapTarget: String,
|
|
6701
|
+
modeFiled: {
|
|
6702
|
+
default: 'id',
|
|
6703
|
+
type: String
|
|
6704
|
+
}
|
|
6575
6705
|
},
|
|
6576
6706
|
|
|
6577
6707
|
setup(__props, {
|
|
@@ -6609,6 +6739,10 @@ const ModelSelectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6609
6739
|
});
|
|
6610
6740
|
});
|
|
6611
6741
|
|
|
6742
|
+
function setModeFiled(val) {
|
|
6743
|
+
viewModel._modeFiled = val;
|
|
6744
|
+
}
|
|
6745
|
+
|
|
6612
6746
|
function pick() {
|
|
6613
6747
|
viewModel && viewModel.pick();
|
|
6614
6748
|
}
|
|
@@ -6646,7 +6780,8 @@ const ModelSelectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6646
6780
|
expose({
|
|
6647
6781
|
pick,
|
|
6648
6782
|
clear,
|
|
6649
|
-
pickCallFunc
|
|
6783
|
+
pickCallFunc,
|
|
6784
|
+
setModeFiled
|
|
6650
6785
|
});
|
|
6651
6786
|
return (_ctx, _cache) => {
|
|
6652
6787
|
const _component_KqTree = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("KqTree");
|
|
@@ -9669,19 +9804,19 @@ ProfileAnalysis.install = (Vue, opts) => {
|
|
|
9669
9804
|
|
|
9670
9805
|
//天际线分析逻辑类
|
|
9671
9806
|
class SkylineAnalysisViewModel {
|
|
9672
|
-
/**
|
|
9673
|
-
* 天际线分析逻辑类
|
|
9674
|
-
* @param {Object} _skylineAnalysis 天际线分析三维对象
|
|
9675
|
-
* @param {Object} _skylineAnalysisChart 二维天际线折线图表(外部生成)
|
|
9676
|
-
* @param {String} _skylineAnalysisChartTitle 二维天际线折线图表标题(中英文适配)
|
|
9677
|
-
* @param {Object} _options 天际线分析存储参数对象
|
|
9678
|
-
* @param {Object} _showLimitHeightBody 限高体是否显示
|
|
9807
|
+
/**
|
|
9808
|
+
* 天际线分析逻辑类
|
|
9809
|
+
* @param {Object} _skylineAnalysis 天际线分析三维对象
|
|
9810
|
+
* @param {Object} _skylineAnalysisChart 二维天际线折线图表(外部生成)
|
|
9811
|
+
* @param {String} _skylineAnalysisChartTitle 二维天际线折线图表标题(中英文适配)
|
|
9812
|
+
* @param {Object} _options 天际线分析存储参数对象
|
|
9813
|
+
* @param {Object} _showLimitHeightBody 限高体是否显示
|
|
9679
9814
|
*/
|
|
9680
9815
|
|
|
9681
|
-
/**
|
|
9682
|
-
* 天际线分析逻辑类构造函数
|
|
9683
|
-
* @param {*} viewer 三维对象
|
|
9684
|
-
* @param {*} option 天际线分析参数对象
|
|
9816
|
+
/**
|
|
9817
|
+
* 天际线分析逻辑类构造函数
|
|
9818
|
+
* @param {*} viewer 三维对象
|
|
9819
|
+
* @param {*} option 天际线分析参数对象
|
|
9685
9820
|
*/
|
|
9686
9821
|
constructor(viewer, option) {
|
|
9687
9822
|
_defineProperty(this, "_skylineAnalysis", null);
|
|
@@ -9719,8 +9854,8 @@ class SkylineAnalysisViewModel {
|
|
|
9719
9854
|
|
|
9720
9855
|
this._skylineAnalysis = new window.Cesium.Kq3dSkyline(this._options);
|
|
9721
9856
|
}
|
|
9722
|
-
/**
|
|
9723
|
-
* 提取天际线
|
|
9857
|
+
/**
|
|
9858
|
+
* 提取天际线
|
|
9724
9859
|
*/
|
|
9725
9860
|
|
|
9726
9861
|
|
|
@@ -9749,8 +9884,8 @@ class SkylineAnalysisViewModel {
|
|
|
9749
9884
|
throw "请添加模型后提取!";
|
|
9750
9885
|
}
|
|
9751
9886
|
}
|
|
9752
|
-
/**
|
|
9753
|
-
* 绘制限高体
|
|
9887
|
+
/**
|
|
9888
|
+
* 绘制限高体
|
|
9754
9889
|
*/
|
|
9755
9890
|
|
|
9756
9891
|
|
|
@@ -9780,8 +9915,8 @@ class SkylineAnalysisViewModel {
|
|
|
9780
9915
|
throw "请添加模型后绘制!";
|
|
9781
9916
|
}
|
|
9782
9917
|
}
|
|
9783
|
-
/**
|
|
9784
|
-
* 展示二维天际线
|
|
9918
|
+
/**
|
|
9919
|
+
* 展示二维天际线
|
|
9785
9920
|
*/
|
|
9786
9921
|
|
|
9787
9922
|
|
|
@@ -9824,8 +9959,8 @@ class SkylineAnalysisViewModel {
|
|
|
9824
9959
|
};
|
|
9825
9960
|
this._skylineAnalysisChart && this._skylineAnalysisChart.setOption(option);
|
|
9826
9961
|
}
|
|
9827
|
-
/**
|
|
9828
|
-
* 清除限高体
|
|
9962
|
+
/**
|
|
9963
|
+
* 清除限高体
|
|
9829
9964
|
*/
|
|
9830
9965
|
|
|
9831
9966
|
|
|
@@ -9842,9 +9977,9 @@ class SkylineAnalysisViewModel {
|
|
|
9842
9977
|
this._skylineAnalysis.removeCzmlJsonDataSource();
|
|
9843
9978
|
}
|
|
9844
9979
|
}
|
|
9845
|
-
/**
|
|
9846
|
-
* 设置天际线颜色
|
|
9847
|
-
* @param {String} lineColor 天际线颜色
|
|
9980
|
+
/**
|
|
9981
|
+
* 设置天际线颜色
|
|
9982
|
+
* @param {String} lineColor 天际线颜色
|
|
9848
9983
|
*/
|
|
9849
9984
|
|
|
9850
9985
|
|
|
@@ -9853,10 +9988,10 @@ class SkylineAnalysisViewModel {
|
|
|
9853
9988
|
this._options.lineColor = window.Cesium.Color.fromCssColorString(lineColor);
|
|
9854
9989
|
if (this._skylineAnalysis) this._skylineAnalysis.lineColor = this._options.lineColor;
|
|
9855
9990
|
}
|
|
9856
|
-
/**
|
|
9857
|
-
* 设置限高体颜色
|
|
9858
|
-
* @param {String} faceColor 限高体轮廓颜色
|
|
9859
|
-
* @param {String} alpha 限高体轮廓颜色透明度
|
|
9991
|
+
/**
|
|
9992
|
+
* 设置限高体颜色
|
|
9993
|
+
* @param {String} faceColor 限高体轮廓颜色
|
|
9994
|
+
* @param {String} alpha 限高体轮廓颜色透明度
|
|
9860
9995
|
*/
|
|
9861
9996
|
|
|
9862
9997
|
|
|
@@ -9865,9 +10000,9 @@ class SkylineAnalysisViewModel {
|
|
|
9865
10000
|
this._options.faceColor = window.Cesium.Color.fromCssColorString(faceColor).withAlpha(alpha || 1);
|
|
9866
10001
|
if (this._skylineAnalysis && this._showLimitHeightBody) this._skylineAnalysis.faceColor = this._options.faceColor;
|
|
9867
10002
|
}
|
|
9868
|
-
/**
|
|
9869
|
-
* 设置天际线半径
|
|
9870
|
-
* @param {String} radius 天际线半径
|
|
10003
|
+
/**
|
|
10004
|
+
* 设置天际线半径
|
|
10005
|
+
* @param {String} radius 天际线半径
|
|
9871
10006
|
*/
|
|
9872
10007
|
|
|
9873
10008
|
|
|
@@ -9876,10 +10011,10 @@ class SkylineAnalysisViewModel {
|
|
|
9876
10011
|
this._options.radius = radius;
|
|
9877
10012
|
if (this._skylineAnalysis) this._skylineAnalysis.radius = radius;
|
|
9878
10013
|
}
|
|
9879
|
-
/**
|
|
9880
|
-
* 设置限高体透明度
|
|
9881
|
-
* @param {String} faceColor 限高体轮廓颜色
|
|
9882
|
-
* @param {String} alpha 限高体轮廓颜色透明度
|
|
10014
|
+
/**
|
|
10015
|
+
* 设置限高体透明度
|
|
10016
|
+
* @param {String} faceColor 限高体轮廓颜色
|
|
10017
|
+
* @param {String} alpha 限高体轮廓颜色透明度
|
|
9883
10018
|
*/
|
|
9884
10019
|
|
|
9885
10020
|
|
|
@@ -9888,10 +10023,10 @@ class SkylineAnalysisViewModel {
|
|
|
9888
10023
|
this._options.faceColor = window.Cesium.Color.fromCssColorString(faceColor).withAlpha(alpha || 1);
|
|
9889
10024
|
if (this._skylineAnalysis && this._showLimitHeightBody) this._skylineAnalysis.faceColor = this._options.faceColor;
|
|
9890
10025
|
}
|
|
9891
|
-
/**
|
|
9892
|
-
* 设置限高体轮廓颜色
|
|
9893
|
-
* @param {String} faceOutlineColor 限高体轮廓颜色
|
|
9894
|
-
* @param {String} alpha 限高体轮廓颜色透明度
|
|
10026
|
+
/**
|
|
10027
|
+
* 设置限高体轮廓颜色
|
|
10028
|
+
* @param {String} faceOutlineColor 限高体轮廓颜色
|
|
10029
|
+
* @param {String} alpha 限高体轮廓颜色透明度
|
|
9895
10030
|
*/
|
|
9896
10031
|
|
|
9897
10032
|
|
|
@@ -9903,8 +10038,8 @@ class SkylineAnalysisViewModel {
|
|
|
9903
10038
|
this._skylineAnalysis.faceOutlineColor = this._options.faceOutlineColor;
|
|
9904
10039
|
}
|
|
9905
10040
|
}
|
|
9906
|
-
/*
|
|
9907
|
-
* 清除
|
|
10041
|
+
/*
|
|
10042
|
+
* 清除
|
|
9908
10043
|
*/
|
|
9909
10044
|
|
|
9910
10045
|
|
|
@@ -9917,8 +10052,8 @@ class SkylineAnalysisViewModel {
|
|
|
9917
10052
|
this._skylineAnalysis = new window.Cesium.Kq3dSkyline(this._options);
|
|
9918
10053
|
}
|
|
9919
10054
|
}
|
|
9920
|
-
/**
|
|
9921
|
-
* 注销
|
|
10055
|
+
/**
|
|
10056
|
+
* 注销
|
|
9922
10057
|
*/
|
|
9923
10058
|
|
|
9924
10059
|
|
|
@@ -13221,8 +13356,8 @@ SlopeAnalysis.install = (Vue, opts) => {
|
|
|
13221
13356
|
;// CONCATENATED MODULE: ./src/webgl/aspectanalysis/AspectAnalysisViewModel.js
|
|
13222
13357
|
|
|
13223
13358
|
|
|
13224
|
-
/**
|
|
13225
|
-
* 坡向逻辑类
|
|
13359
|
+
/**
|
|
13360
|
+
* 坡向逻辑类
|
|
13226
13361
|
**/
|
|
13227
13362
|
class AspectAnalysisViewModel {
|
|
13228
13363
|
// 坡向三维对象
|
|
@@ -15060,7 +15195,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
15060
15195
|
|
|
15061
15196
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
15062
15197
|
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, {
|
|
15063
|
-
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).
|
|
15198
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).isolineMaxHeight
|
|
15064
15199
|
}, {
|
|
15065
15200
|
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, {
|
|
15066
15201
|
style: {
|
|
@@ -15888,7 +16023,7 @@ const IsolineAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
15888
16023
|
|
|
15889
16024
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
15890
16025
|
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, {
|
|
15891
|
-
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).
|
|
16026
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).isolineMaxHeight
|
|
15892
16027
|
}, {
|
|
15893
16028
|
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, {
|
|
15894
16029
|
style: {
|
|
@@ -18780,12 +18915,6 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
18780
18915
|
// namePlaceholder: language.value.unnamedLayer,
|
|
18781
18916
|
// urlPlaceholder: language.value.format +':http://<host>:<port>/xxx/<servername>/info.xml',
|
|
18782
18917
|
// description: language.value.imagertyObTerrainTileFiledescription
|
|
18783
|
-
// }, {
|
|
18784
|
-
// type: 'stkterrain',
|
|
18785
|
-
// name: language.value.StkTerrainTileFile,
|
|
18786
|
-
// namePlaceholder: language.value.unnamedLayer,
|
|
18787
|
-
// urlPlaceholder: language.value.format +':http://<host>:<port>/xxx/<foldername>/',
|
|
18788
|
-
// description: language.value.imagertyStkTerrainTileFiledescription
|
|
18789
18918
|
// },
|
|
18790
18919
|
{
|
|
18791
18920
|
type: 'kqgis3dserver',
|
|
@@ -18841,38 +18970,43 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
18841
18970
|
namePlaceholder: language.value.unnamedLayer,
|
|
18842
18971
|
urlPlaceholder: language.value.format + ':http://<host>:<port>/tileset.json',
|
|
18843
18972
|
description: language.value.imagerty3DTilesFiledescription
|
|
18973
|
+
}, {
|
|
18974
|
+
type: 'stkterrain',
|
|
18975
|
+
name: language.value.StkTerrainTileFile,
|
|
18976
|
+
namePlaceholder: language.value.unnamedLayer,
|
|
18977
|
+
urlPlaceholder: language.value.format + ':http://<host>:<port>/xxx/<foldername>/',
|
|
18978
|
+
description: language.value.imagertyStkTerrainTileFiledescription
|
|
18979
|
+
}, {
|
|
18980
|
+
type: 'geojson',
|
|
18981
|
+
name: language.value.GeoJson,
|
|
18982
|
+
namePlaceholder: language.value.unnamedLayer,
|
|
18983
|
+
urlPlaceholder: language.value.format + ': http://<host>:<port>/xxx.geojson',
|
|
18984
|
+
description: language.value.imagertyGeoJsondescription
|
|
18985
|
+
}, {
|
|
18986
|
+
type: 'mvt',
|
|
18987
|
+
name: language.value.MVT + '(未实现)',
|
|
18988
|
+
namePlaceholder: language.value.unnamedLayer,
|
|
18989
|
+
urlPlaceholder: language.value.format + ':http://<host>:<port>/mvt/style.json',
|
|
18990
|
+
description: language.value.imagertyMVTdescription
|
|
18844
18991
|
}
|
|
18845
18992
|
/*, {
|
|
18846
|
-
|
|
18847
|
-
|
|
18848
|
-
|
|
18849
|
-
|
|
18850
|
-
|
|
18851
|
-
}, {
|
|
18852
|
-
type: 'mvt',
|
|
18853
|
-
name: language.value.MVT,
|
|
18854
|
-
namePlaceholder: language.value.unnamedLayer,
|
|
18855
|
-
urlPlaceholder: language.value.format +':http://<host>:<port>/mvt/tiles/{z}/{x}/{y}.mvt',
|
|
18856
|
-
stylePlaceholder: language.value.format +':http://<host>:<port>/mvt/style.json',
|
|
18857
|
-
description: language.value.imagertyMVTdescription
|
|
18858
|
-
}, {
|
|
18859
|
-
type: 'geojson',
|
|
18860
|
-
name: language.value.GeoJson,
|
|
18861
|
-
namePlaceholder: language.value.unnamedLayer,
|
|
18862
|
-
urlPlaceholder: language.value.format +': http://<host>:<port>/xxx/<servername>/xxx.geojson',
|
|
18863
|
-
description: language.value.imagertyGeoJsondescription
|
|
18993
|
+
type: 'wfs',
|
|
18994
|
+
name: language.value.OGCWFS,
|
|
18995
|
+
namePlaceholder: language.value.wfsLayer,
|
|
18996
|
+
urlPlaceholder: language.value.format +':http://<host>:<port>/ArcGIS/rest/services/<servername>/wfs',
|
|
18997
|
+
description: language.value.imagertyOGCWFSdescription
|
|
18864
18998
|
}, {
|
|
18865
|
-
|
|
18866
|
-
|
|
18867
|
-
|
|
18868
|
-
|
|
18869
|
-
|
|
18999
|
+
type: 'kml',
|
|
19000
|
+
name: language.value.KML,
|
|
19001
|
+
namePlaceholder: language.value.unnamedLayer,
|
|
19002
|
+
urlPlaceholder: language.value.format +': http://<host>:<port>/xxx/<servername>/xxx.kml',
|
|
19003
|
+
description: language.value.imagertyKMLdescription
|
|
18870
19004
|
}, {
|
|
18871
|
-
|
|
18872
|
-
|
|
18873
|
-
|
|
18874
|
-
|
|
18875
|
-
|
|
19005
|
+
type: 'czml',
|
|
19006
|
+
name: language.value.CZML,
|
|
19007
|
+
namePlaceholder: language.value.unnamedLayer,
|
|
19008
|
+
urlPlaceholder: language.value.format +': http://<host>:<port>/xxx/<servername>/xxx.czml',
|
|
19009
|
+
description: language.value.imagertyCZMLdescription
|
|
18876
19010
|
}*/
|
|
18877
19011
|
];
|
|
18878
19012
|
dataSourceType.value = dataSourceTypeList.value[0];
|
|
@@ -21199,8 +21333,8 @@ const CompareMapTreevue_type_script_setup_true_lang_js_default_ = {
|
|
|
21199
21333
|
|
|
21200
21334
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)({});
|
|
21201
21335
|
let viewModel = null;
|
|
21202
|
-
/**
|
|
21203
|
-
* 勾选图层逻辑
|
|
21336
|
+
/**
|
|
21337
|
+
* 勾选图层逻辑
|
|
21204
21338
|
*/
|
|
21205
21339
|
|
|
21206
21340
|
function changeLayer(values) {
|
|
@@ -22384,7 +22518,7 @@ const Rollervue_type_script_setup_true_lang_js_default_ = {
|
|
|
22384
22518
|
|
|
22385
22519
|
|
|
22386
22520
|
function reset() {
|
|
22387
|
-
formItem.mode =
|
|
22521
|
+
formItem.mode = null;
|
|
22388
22522
|
viewModel && viewModel.reset();
|
|
22389
22523
|
} // 销毁
|
|
22390
22524
|
|
|
@@ -22441,7 +22575,9 @@ const Rollervue_type_script_setup_true_lang_js_default_ = {
|
|
|
22441
22575
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).mode,
|
|
22442
22576
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).mode = $event),
|
|
22443
22577
|
onChange: changeMode,
|
|
22444
|
-
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).noRoller + '...'
|
|
22578
|
+
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).noRoller + '...',
|
|
22579
|
+
clearable: "",
|
|
22580
|
+
onClear: reset
|
|
22445
22581
|
}, {
|
|
22446
22582
|
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_option, {
|
|
22447
22583
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).lrRoller,
|
|
@@ -22832,14 +22968,14 @@ class StatusBarViewModel {
|
|
|
22832
22968
|
|
|
22833
22969
|
|
|
22834
22970
|
|
|
22835
|
-
/**
|
|
22836
|
-
* 支持传入属性:
|
|
22837
|
-
* hideResolution - 隐藏分辨率
|
|
22838
|
-
* hideScale - 隐藏比例尺
|
|
22839
|
-
* hideLonLat - 隐藏经纬度
|
|
22840
|
-
* hideEyeAlt - 隐藏视点高
|
|
22841
|
-
* hideCopyright - 隐藏版权信息
|
|
22842
|
-
* copyrightText - 版权信息文字
|
|
22971
|
+
/**
|
|
22972
|
+
* 支持传入属性:
|
|
22973
|
+
* hideResolution - 隐藏分辨率
|
|
22974
|
+
* hideScale - 隐藏比例尺
|
|
22975
|
+
* hideLonLat - 隐藏经纬度
|
|
22976
|
+
* hideEyeAlt - 隐藏视点高
|
|
22977
|
+
* hideCopyright - 隐藏版权信息
|
|
22978
|
+
* copyrightText - 版权信息文字
|
|
22843
22979
|
*/
|
|
22844
22980
|
|
|
22845
22981
|
const StatusBarvue_type_script_setup_true_lang_js_default_ = {
|
|
@@ -22921,11 +23057,11 @@ StatusBar.install = (Vue, opts) => {
|
|
|
22921
23057
|
|
|
22922
23058
|
|
|
22923
23059
|
;// CONCATENATED MODULE: ./src/webgl/components.js
|
|
22924
|
-
/**
|
|
22925
|
-
* Author: 朱鹏超
|
|
22926
|
-
* Date: 2022-11-23
|
|
22927
|
-
* Description: client3d_webgl_vue 组件入口
|
|
22928
|
-
* LastEditors: 朱鹏超
|
|
23060
|
+
/**
|
|
23061
|
+
* Author: 朱鹏超
|
|
23062
|
+
* Date: 2022-11-23
|
|
23063
|
+
* Description: client3d_webgl_vue 组件入口
|
|
23064
|
+
* LastEditors: 朱鹏超
|
|
22929
23065
|
*/
|
|
22930
23066
|
|
|
22931
23067
|
// 三维地图快捷工具
|
|
@@ -23043,11 +23179,11 @@ const install = function (Vue, opts = {}) {
|
|
|
23043
23179
|
install
|
|
23044
23180
|
});
|
|
23045
23181
|
;// CONCATENATED MODULE: ./src/webgl/index.js
|
|
23046
|
-
/**
|
|
23047
|
-
* Author: 朱鹏超
|
|
23048
|
-
* Date: 2022-11-23
|
|
23049
|
-
* Description: webgl 组件包的总入口文件
|
|
23050
|
-
* LastEditors: 朱鹏超
|
|
23182
|
+
/**
|
|
23183
|
+
* Author: 朱鹏超
|
|
23184
|
+
* Date: 2022-11-23
|
|
23185
|
+
* Description: webgl 组件包的总入口文件
|
|
23186
|
+
* LastEditors: 朱鹏超
|
|
23051
23187
|
*/
|
|
23052
23188
|
// import "@/webgl/style.scss";
|
|
23053
23189
|
|