chbim-plugins 0.0.24 → 0.0.25
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/chbim-plugins.js +5 -3
- package/chbim-plugins.umd.cjs +14 -14
- package/package.json +2 -5
package/chbim-plugins.js
CHANGED
|
@@ -24820,9 +24820,9 @@ class hg {
|
|
|
24820
24820
|
let A = this.query($);
|
|
24821
24821
|
A || K("缺少树结构");
|
|
24822
24822
|
let { gisInfo: d } = A;
|
|
24823
|
-
B = d.id, b = d.order, q = A.url;
|
|
24823
|
+
B = d.id, b = d.order, q = A.url, minimumLevel = d.minLevel, maximumLevel = d.maxLevel;
|
|
24824
24824
|
} else
|
|
24825
|
-
B = $.imageXyzId, q = $.url, b = $.zIndex;
|
|
24825
|
+
B = $.imageXyzId, q = $.url, b = $.zIndex, minimumLevel = $.minimumLevel, maximumLevel = $.maximumLevel;
|
|
24826
24826
|
this.elevationImageLayer = new mars3d.layer.XyzLayer({
|
|
24827
24827
|
imageXyzId: B,
|
|
24828
24828
|
type: "xyz",
|
|
@@ -24840,7 +24840,9 @@ class hg {
|
|
|
24840
24840
|
hue: O,
|
|
24841
24841
|
gamma: U,
|
|
24842
24842
|
alpha: Y,
|
|
24843
|
-
show: !0
|
|
24843
|
+
show: !0,
|
|
24844
|
+
minimumLevel: minimumLevel || 0,
|
|
24845
|
+
maximumLevel: maximumLevel || 15
|
|
24844
24846
|
}), this.elevationImageLayer.on(mars3d.EventType.load, (A) => {
|
|
24845
24847
|
H(A);
|
|
24846
24848
|
}), this.map.addLayer(this.elevationImageLayer), p && Object.keys(p).forEach((A) => {
|