Good Day
Is there an event that will trigger once my updated / added features are visible on the map and ready for interaction?
Once the promise resolves ex:
layer.applyEdits({
updateFeatures: data
}).then(() => {
this.layerLoadedEvent.emit(true);
r(null);
})I'm still waiting for the features to be visible on the map, is there any event to let me know when everything is ready?
Thanks