Merge branch 'master' of github.com:pietervdvn/MapComplete

This commit is contained in:
Pieter Fiers 2020-07-29 17:17:05 +02:00
commit 4c46c953e6
10 changed files with 81 additions and 27 deletions

View file

@ -31,6 +31,13 @@ export class Layout {
public startLat: number;
public locationContains: string[];
public enableAdd: boolean = true;
public enableUserBadge: boolean = true;
public enableSearch: boolean = true;
public enableLayers: boolean = true;
public hideFromOverview : boolean = false;
/**
*

View file

@ -15,5 +15,6 @@ export class All extends Layout{
"Please log in",
""
);
this.hideFromOverview = true;
}
}

View file

@ -18,5 +18,6 @@ export class GRB extends Layout {
,
"", "");
this.hideFromOverview = true;
}
}

View file

@ -87,6 +87,10 @@ export class StreetWidth extends Layout{
"<li>Voorzie in elke straat enkele parkeerplaatsen voor kortparkeren. Zo kunnen leveringen, iemand afzetten,... gebeuren zonder dat er een fietspad of een straat geblokkeerd wordt</li>" +
"</ul>");
this.icon = "assets/bug.svg";
this.enableSearch = false;
this.enableUserBadge = false;
this.enableAdd = false;
this.hideFromOverview = true;
}
}