@kq_npm/client3d_webgl_vue 2.9.3-beta → 2.9.5-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 +7 -2
- package/package.json +1 -1
- package/roller/index.js +2 -2
- package/scenceview/index.js +7 -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);
|
|
@@ -22446,8 +22451,8 @@ class RollerViewModel {
|
|
|
22446
22451
|
this._lrSliderHandler && this._lrSliderHandler.destroy();
|
|
22447
22452
|
this._tbSliderActive && this._tbSliderActive.destroy(); //移除卷帘分割线DOM元素
|
|
22448
22453
|
|
|
22449
|
-
this._lrSlider && this._viewer.removeChild(this._lrSlider);
|
|
22450
|
-
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);
|
|
22451
22456
|
}
|
|
22452
22457
|
|
|
22453
22458
|
}
|
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.5-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
|
@@ -14452,8 +14452,8 @@ class RollerViewModel {
|
|
|
14452
14452
|
this._lrSliderHandler && this._lrSliderHandler.destroy();
|
|
14453
14453
|
this._tbSliderActive && this._tbSliderActive.destroy(); //移除卷帘分割线DOM元素
|
|
14454
14454
|
|
|
14455
|
-
this._lrSlider && this._viewer.removeChild(this._lrSlider);
|
|
14456
|
-
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);
|
|
14457
14457
|
}
|
|
14458
14458
|
|
|
14459
14459
|
}
|
|
@@ -22050,6 +22050,11 @@ class DrawManager {
|
|
|
22050
22050
|
}
|
|
22051
22051
|
}
|
|
22052
22052
|
|
|
22053
|
+
if (style.point) {
|
|
22054
|
+
style.point.color = style.point.material;
|
|
22055
|
+
delete style.billboard;
|
|
22056
|
+
}
|
|
22057
|
+
|
|
22053
22058
|
this._viewer.scene.globe.depthTestAgainstTerrain = false;
|
|
22054
22059
|
|
|
22055
22060
|
let geojsonDs = this._viewer.dataSources.getByName(idCustom);
|