septima-widget 3.8.4 → 3.9.0
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 +11 -3
package/package.json
CHANGED
package/widgetapi.mjs
CHANGED
|
@@ -6,7 +6,7 @@ export default class WidgetAPI {
|
|
|
6
6
|
|
|
7
7
|
_target = null
|
|
8
8
|
|
|
9
|
-
VERSION = '3.
|
|
9
|
+
VERSION = '3.9.0'
|
|
10
10
|
|
|
11
11
|
isReady = false
|
|
12
12
|
|
|
@@ -16,7 +16,7 @@ export default class WidgetAPI {
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
async _load(target, config, options) {
|
|
19
|
-
const { load } = await import('https://widget.cdn.septima.dk/3.
|
|
19
|
+
const { load } = await import('https://widget.cdn.septima.dk/3.9.0/core/load.mjs')
|
|
20
20
|
this._widget = await load(target, config, options, this)
|
|
21
21
|
this.on('controlsready', () => {
|
|
22
22
|
this._controlsReady()
|
|
@@ -175,6 +175,14 @@ export default class WidgetAPI {
|
|
|
175
175
|
this._vectorsReady(() => this._widget.deselectFeature(silent))
|
|
176
176
|
}
|
|
177
177
|
|
|
178
|
+
addLayer(layerConfig) {
|
|
179
|
+
this._controlsReady(() => this._widget.addLayer(layerConfig))
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
removeLayer(layerId) {
|
|
183
|
+
this._controlsReady(() => this._widget.removeLayer(layerId))
|
|
184
|
+
}
|
|
185
|
+
|
|
178
186
|
showLayer(layerId) {
|
|
179
187
|
this._controlsReady(() => this._widget.showLayer(layerId))
|
|
180
188
|
}
|
|
@@ -217,7 +225,7 @@ export default class WidgetAPI {
|
|
|
217
225
|
|
|
218
226
|
transform(geojson, options, callback) {
|
|
219
227
|
this._controlsReady(async () => {
|
|
220
|
-
const { transform } = await import('https://widget.cdn.septima.dk/3.
|
|
228
|
+
const { transform } = await import('https://widget.cdn.septima.dk/3.9.0/core/utils.mjs')
|
|
221
229
|
if (callback) {
|
|
222
230
|
callback(transform(geojson, options))
|
|
223
231
|
} else {
|