Add MapComplete
This commit is contained in:
commit
6187122294
61 changed files with 107059 additions and 0 deletions
33
Layers/CommonTagMappings.ts
Normal file
33
Layers/CommonTagMappings.ts
Normal file
|
@ -0,0 +1,33 @@
|
|||
import {TagMappingOptions} from "../UI/TagMapping";
|
||||
|
||||
|
||||
export class CommonTagMappings {
|
||||
|
||||
|
||||
public static access = new TagMappingOptions({
|
||||
key: "access",
|
||||
mapping: {
|
||||
yes: "Vrij toegankelijk (op de paden)",
|
||||
no: "Niet toegankelijk",
|
||||
private: "Niet toegankelijk, want privegebied",
|
||||
permissive: "Toegankelijk, maar het is privegebied",
|
||||
guided: "Enkel met gids of op activiteit"
|
||||
}
|
||||
});
|
||||
|
||||
public static operator = new TagMappingOptions({
|
||||
key: "operator",
|
||||
template: "Beheer door {operator}",
|
||||
mapping: {
|
||||
private: 'Beheer door een privepersoon of organisatie'
|
||||
}
|
||||
|
||||
});
|
||||
public static osmLink = new TagMappingOptions({
|
||||
key: "id",
|
||||
mapping: {
|
||||
"node/-1": "Over enkele momenten sturen we je punt naar OpenStreetMap"
|
||||
},
|
||||
template: "<a href='https://osm.org/{id}'> Op OSM</a>"
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue