septima-widget 0.0.0-dev-e8deb → 0.0.0-dev-40b24
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/package.json +1 -1
- package/widgetapi.mjs +4 -0
package/package.json
CHANGED
package/widgetapi.mjs
CHANGED
|
@@ -195,6 +195,10 @@ export default class WidgetAPI {
|
|
|
195
195
|
this._controlsReady(() => this._widget.setLayerOpacity(layerId, opacity))
|
|
196
196
|
}
|
|
197
197
|
|
|
198
|
+
setLayerZIndex(layerId, zIndex) {
|
|
199
|
+
this._controlsReady(() => this._widget.setLayerZIndex(layerId, zIndex))
|
|
200
|
+
}
|
|
201
|
+
|
|
198
202
|
reloadLayer(layerId) {
|
|
199
203
|
this._controlsReady(() => this._widget.reloadLayer(layerId))
|
|
200
204
|
}
|