implement layer compare slider

This commit is contained in:
Willem Dantuma
2022-09-27 19:58:08 +02:00
parent 7b2dbc1777
commit ddb112b989
11 changed files with 192 additions and 31 deletions

View File

@@ -76,4 +76,10 @@ export class LayerSwitcher implements OnInit,OnChanges{
handleSelectBaseLayer(itemLayer: IItemLayer) {
this.store.dispatch(new mapActions.SelectBaseLayer(itemLayer));
}
handleToggleShowDatalayerSlide(event:Event) {
this.store.dispatch(new mapActions.ShowLayerSwitcher(false));
this.store.dispatch(new mapActions.ToggleShowDataLayerSlide());
event.preventDefault();
}
}