@kq_npm/client3d_webgl_vue 4.5.20-beta → 4.5.22-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 +2 -2
- package/clientPrint/index.js +1579 -1002
- package/comparemap/index.js +17 -13
- package/flight/index.js +1 -1
- package/index.js +1544 -1002
- package/isolineanalysis/index.js +598 -576
- package/isolineanalysis/style/isolineanalysis.css +1 -1
- package/modelselect/index.js +3 -1
- package/package.json +1 -1
- package/roller/index.js +20 -13
- package/sceneapp/index.js +44700 -4326
- package/sceneview/index.js +1579 -1002
- package/style.css +1 -1
package/comparemap/index.js
CHANGED
|
@@ -222,9 +222,9 @@ var esnext_iterator_for_each_js_ = __webpack_require__(1058);
|
|
|
222
222
|
|
|
223
223
|
|
|
224
224
|
|
|
225
|
-
/*
|
|
226
|
-
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
227
|
-
* All rights reserved.
|
|
225
|
+
/*
|
|
226
|
+
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
227
|
+
* All rights reserved.
|
|
228
228
|
*/
|
|
229
229
|
//多窗口逻辑类
|
|
230
230
|
class CompareMapViewModel {
|
|
@@ -275,11 +275,13 @@ class CompareMapViewModel {
|
|
|
275
275
|
for (let i = 0; i < checkedLayerkeys.length; i++) {
|
|
276
276
|
let layer = this._scenceView._layerManager.getLayerByGuid(checkedLayerkeys[i]);
|
|
277
277
|
let type = this._scenceView._layerManager.getLayerTypeByGuid(checkedLayerkeys[i]);
|
|
278
|
-
layer
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
entity
|
|
282
|
-
|
|
278
|
+
if (layer) {
|
|
279
|
+
layer.showInViews = [];
|
|
280
|
+
if (type == 'datasource') {
|
|
281
|
+
layer.entities.values.forEach(entity => {
|
|
282
|
+
entity.showInViews = [];
|
|
283
|
+
});
|
|
284
|
+
}
|
|
283
285
|
}
|
|
284
286
|
}
|
|
285
287
|
}
|
|
@@ -293,11 +295,13 @@ class CompareMapViewModel {
|
|
|
293
295
|
for (let i = 0; i < checkedLayerkeys.length; i++) {
|
|
294
296
|
let layer = this._scenceView._layerManager.getLayerByGuid(checkedLayerkeys[i]);
|
|
295
297
|
let type = this._scenceView._layerManager.getLayerTypeByGuid(checkedLayerkeys[i]);
|
|
296
|
-
layer
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
entity
|
|
300
|
-
|
|
298
|
+
if (layer) {
|
|
299
|
+
layer.showInViews = undefined;
|
|
300
|
+
if (type == 'datasource') {
|
|
301
|
+
layer.entities.values.forEach(entity => {
|
|
302
|
+
entity.showInViews = [0, 1, 2, 3];
|
|
303
|
+
});
|
|
304
|
+
}
|
|
301
305
|
}
|
|
302
306
|
}
|
|
303
307
|
}
|
package/flight/index.js
CHANGED
|
@@ -1041,7 +1041,7 @@ const __default__ = {
|
|
|
1041
1041
|
"header-cell-style": (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headClass)
|
|
1042
1042
|
}, {
|
|
1043
1043
|
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_table_column, {
|
|
1044
|
-
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).
|
|
1044
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).order,
|
|
1045
1045
|
width: "50",
|
|
1046
1046
|
type: "index",
|
|
1047
1047
|
align: "center"
|