@kq_npm/client3d_webgl_vue 0.2.9-beta → 0.3.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/index.js +6 -4
- package/package.json +1 -1
- package/scenceview/index.js +3 -3
package/index.js
CHANGED
|
@@ -500,6 +500,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
500
500
|
"webglComponents": function() { return /* reexport */ webglComponents; }
|
|
501
501
|
});
|
|
502
502
|
|
|
503
|
+
;// CONCATENATED MODULE: external "@kq_npm/client3d_webgl_vue/style.css"
|
|
504
|
+
var style_css_namespaceObject = require("@kq_npm/client3d_webgl_vue/style.css");
|
|
503
505
|
;// CONCATENATED MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
504
506
|
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject = require("vue");
|
|
505
507
|
;// CONCATENATED MODULE: external "@kq_npm/client_icons_vue"
|
|
@@ -1302,7 +1304,7 @@ class LayerManager {
|
|
|
1302
1304
|
|
|
1303
1305
|
getLayerTreeData() {
|
|
1304
1306
|
return JSON.parse(JSON.stringify(this._layerTreeData));
|
|
1305
|
-
}
|
|
1307
|
+
} //获取选中或未选中图层集合
|
|
1306
1308
|
|
|
1307
1309
|
|
|
1308
1310
|
getLayerCheckedList() {
|
|
@@ -1318,11 +1320,11 @@ class LayerManager {
|
|
|
1318
1320
|
} //获取选中图层key集合
|
|
1319
1321
|
|
|
1320
1322
|
|
|
1321
|
-
getLayerCheckedListKey() {
|
|
1323
|
+
getLayerCheckedListKey(isCheck = true) {
|
|
1322
1324
|
let checkedKeys = [];
|
|
1323
1325
|
|
|
1324
1326
|
this._layerListData.forEach(layer => {
|
|
1325
|
-
if (layer.visible) {
|
|
1327
|
+
if (layer.visible === isCheck) {
|
|
1326
1328
|
checkedKeys.push(layer.guid);
|
|
1327
1329
|
}
|
|
1328
1330
|
});
|
|
@@ -20196,7 +20198,7 @@ const install = function (Vue, opts = {}) {
|
|
|
20196
20198
|
* Description: webgl 组件包的总入口文件
|
|
20197
20199
|
* LastEditors: 朱鹏超
|
|
20198
20200
|
*/
|
|
20199
|
-
|
|
20201
|
+
|
|
20200
20202
|
|
|
20201
20203
|
/* harmony default export */ var webgl = (components);
|
|
20202
20204
|
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@kq_npm/client3d_webgl_vue","description":"KQGIS Client3D for Vue.js","version":"0.
|
|
1
|
+
{"name":"@kq_npm/client3d_webgl_vue","description":"KQGIS Client3D for Vue.js","version":"0.3.0-beta","homepage":"","keywords":["KQGIS","webGL","Vue"],"browserslist":["> 1%","last 2 versions","not dead","not ie 11"],"author":"KQWEB GROUP","license":"Apache-2.0","dependencies":{"colorcolor":"^1.1.1","echarts":"^5.3.3","js-cookie":"^3.0.1","omit.js":"^2.0.2","save":"^2.5.0","tinycolor2":"^1.4.2","vue-i18n":"^9.2.0-beta.36","xlsx":"^0.18.5","@turf/turf":"^6.5.0","css-vars-ponyfill":"^2.4.7","xe-utils":"^3.5.4"}}
|
package/scenceview/index.js
CHANGED
|
@@ -857,7 +857,7 @@ class LayerManager {
|
|
|
857
857
|
|
|
858
858
|
getLayerTreeData() {
|
|
859
859
|
return JSON.parse(JSON.stringify(this._layerTreeData));
|
|
860
|
-
}
|
|
860
|
+
} //获取选中或未选中图层集合
|
|
861
861
|
|
|
862
862
|
|
|
863
863
|
getLayerCheckedList() {
|
|
@@ -873,11 +873,11 @@ class LayerManager {
|
|
|
873
873
|
} //获取选中图层key集合
|
|
874
874
|
|
|
875
875
|
|
|
876
|
-
getLayerCheckedListKey() {
|
|
876
|
+
getLayerCheckedListKey(isCheck = true) {
|
|
877
877
|
let checkedKeys = [];
|
|
878
878
|
|
|
879
879
|
this._layerListData.forEach(layer => {
|
|
880
|
-
if (layer.visible) {
|
|
880
|
+
if (layer.visible === isCheck) {
|
|
881
881
|
checkedKeys.push(layer.guid);
|
|
882
882
|
}
|
|
883
883
|
});
|