implement layer compare slider
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma
2022-09-27 19:58:08 +02:00
parent 15cc2c33f1
commit 7502bc54d1
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();
}
}