Change map button styling
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma
2021-01-30 16:40:25 +01:00
parent dd97c89254
commit 0c44beabe0
6 changed files with 14 additions and 4 deletions

View File

@@ -15,6 +15,7 @@ export class Switch2D3DComponent {
public label: string = "3D";
private ol3d: OLCesium;
private synchronizers:any[];
public loading:boolean = true;
constructor(private map: MapComponent) {
@@ -28,6 +29,7 @@ export class Switch2D3DComponent {
new olcs.RasterSynchronizer(map,scene),
new olcs.VectorSynchronizer(map,scene)
];
this.loading=false;
return this.synchronizers;
}, stopOpenLayersEventsPropagation:true});
}