@kq_npm/client3d_webgl_vue 2.9.2-beta → 2.9.4-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 +11 -2
- package/modelselect/index.js +4 -0
- package/package.json +1 -1
- package/roller/index.js +2 -2
- package/scenceview/index.js +11 -2
package/index.js
CHANGED
|
@@ -933,6 +933,11 @@ class DrawManager {
|
|
|
933
933
|
}
|
|
934
934
|
}
|
|
935
935
|
|
|
936
|
+
if (style.point) {
|
|
937
|
+
style.point.color = style.point.material;
|
|
938
|
+
delete style.billboard;
|
|
939
|
+
}
|
|
940
|
+
|
|
936
941
|
this._viewer.scene.globe.depthTestAgainstTerrain = false;
|
|
937
942
|
|
|
938
943
|
let geojsonDs = this._viewer.dataSources.getByName(idCustom);
|
|
@@ -6701,6 +6706,10 @@ const ModelSelectvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6701
6706
|
modeFiled: {
|
|
6702
6707
|
default: 'id',
|
|
6703
6708
|
type: String
|
|
6709
|
+
},
|
|
6710
|
+
// 外部字段别名映射
|
|
6711
|
+
aliasNameReflection: {
|
|
6712
|
+
type: Function
|
|
6704
6713
|
}
|
|
6705
6714
|
},
|
|
6706
6715
|
|
|
@@ -22442,8 +22451,8 @@ class RollerViewModel {
|
|
|
22442
22451
|
this._lrSliderHandler && this._lrSliderHandler.destroy();
|
|
22443
22452
|
this._tbSliderActive && this._tbSliderActive.destroy(); //移除卷帘分割线DOM元素
|
|
22444
22453
|
|
|
22445
|
-
this._lrSlider && this._viewer.removeChild(this._lrSlider);
|
|
22446
|
-
this._tbSlider && this._viewer.removeChild(this._tbSlider);
|
|
22454
|
+
this._lrSlider && this._viewer.container.removeChild(this._lrSlider);
|
|
22455
|
+
this._tbSlider && this._viewer.container.removeChild(this._tbSlider);
|
|
22447
22456
|
}
|
|
22448
22457
|
|
|
22449
22458
|
}
|
package/modelselect/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@kq_npm/client3d_webgl_vue","description":"KQGIS Client3D for Vue.js","version":"2.9.
|
|
1
|
+
{"name":"@kq_npm/client3d_webgl_vue","description":"KQGIS Client3D for Vue.js","version":"2.9.4-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","css-vars-ponyfill":"^2.4.8","html2canvas":"^1.4.1","xe-utils":"^3.5.4"}}
|
package/roller/index.js
CHANGED
|
@@ -206,8 +206,8 @@ class RollerViewModel {
|
|
|
206
206
|
this._lrSliderHandler && this._lrSliderHandler.destroy();
|
|
207
207
|
this._tbSliderActive && this._tbSliderActive.destroy(); //移除卷帘分割线DOM元素
|
|
208
208
|
|
|
209
|
-
this._lrSlider && this._viewer.removeChild(this._lrSlider);
|
|
210
|
-
this._tbSlider && this._viewer.removeChild(this._tbSlider);
|
|
209
|
+
this._lrSlider && this._viewer.container.removeChild(this._lrSlider);
|
|
210
|
+
this._tbSlider && this._viewer.container.removeChild(this._tbSlider);
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
}
|
package/scenceview/index.js
CHANGED
|
@@ -11344,6 +11344,10 @@ const __default__ = {
|
|
|
11344
11344
|
modeFiled: {
|
|
11345
11345
|
default: 'id',
|
|
11346
11346
|
type: String
|
|
11347
|
+
},
|
|
11348
|
+
// 外部字段别名映射
|
|
11349
|
+
aliasNameReflection: {
|
|
11350
|
+
type: Function
|
|
11347
11351
|
}
|
|
11348
11352
|
},
|
|
11349
11353
|
|
|
@@ -14448,8 +14452,8 @@ class RollerViewModel {
|
|
|
14448
14452
|
this._lrSliderHandler && this._lrSliderHandler.destroy();
|
|
14449
14453
|
this._tbSliderActive && this._tbSliderActive.destroy(); //移除卷帘分割线DOM元素
|
|
14450
14454
|
|
|
14451
|
-
this._lrSlider && this._viewer.removeChild(this._lrSlider);
|
|
14452
|
-
this._tbSlider && this._viewer.removeChild(this._tbSlider);
|
|
14455
|
+
this._lrSlider && this._viewer.container.removeChild(this._lrSlider);
|
|
14456
|
+
this._tbSlider && this._viewer.container.removeChild(this._tbSlider);
|
|
14453
14457
|
}
|
|
14454
14458
|
|
|
14455
14459
|
}
|
|
@@ -22046,6 +22050,11 @@ class DrawManager {
|
|
|
22046
22050
|
}
|
|
22047
22051
|
}
|
|
22048
22052
|
|
|
22053
|
+
if (style.point) {
|
|
22054
|
+
style.point.color = style.point.material;
|
|
22055
|
+
delete style.billboard;
|
|
22056
|
+
}
|
|
22057
|
+
|
|
22049
22058
|
this._viewer.scene.globe.depthTestAgainstTerrain = false;
|
|
22050
22059
|
|
|
22051
22060
|
let geojsonDs = this._viewer.dataSources.getByName(idCustom);
|