forked from MapComplete/MapComplete
Further improvement to the cycle highways
This commit is contained in:
parent
12323739f1
commit
dad579c895
1 changed files with 50 additions and 4 deletions
|
@ -6,7 +6,7 @@
|
||||||
"hideFromOverview": true,
|
"hideFromOverview": true,
|
||||||
"maintainer": "L'imaginaire",
|
"maintainer": "L'imaginaire",
|
||||||
"icon": "./assets/themes/cycle_highways/fietssnelwegen-logo.svg",
|
"icon": "./assets/themes/cycle_highways/fietssnelwegen-logo.svg",
|
||||||
"overpassUrl": "https://overpass.kumi.systems/api/interpreter",
|
"#overpassUrl": "https://overpass.kumi.systems/api/interpreter",
|
||||||
"overpassTimeout": 60,
|
"overpassTimeout": 60,
|
||||||
"description": {
|
"description": {
|
||||||
"en": "This map shows cycle highways"
|
"en": "This map shows cycle highways"
|
||||||
|
@ -50,8 +50,31 @@
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
"if": "state=proposed",
|
"if": {
|
||||||
"then": "This is a proposed route"
|
"and": [
|
||||||
|
"state=proposed",
|
||||||
|
"note:state="
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"then": "This is a proposed route which can be cycled"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"then": "This is a proposed route which has missing links (thus: some parts don't even have a building permit yet)",
|
||||||
|
"if": {
|
||||||
|
"and": [
|
||||||
|
"state=proposed",
|
||||||
|
"note:state=has_highway_no"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"then": "This is a proposed route which has some links which are under construction",
|
||||||
|
"if": {
|
||||||
|
"and": [
|
||||||
|
"state=proposed",
|
||||||
|
"note:state=has_highway_under_construction"
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"if": "state=temporary",
|
"if": "state=temporary",
|
||||||
|
@ -68,7 +91,7 @@
|
||||||
},
|
},
|
||||||
"website",
|
"website",
|
||||||
{
|
{
|
||||||
"render":"{all_tags()}"
|
"render": "{all_tags()}"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": {
|
"name": {
|
||||||
|
@ -105,6 +128,14 @@
|
||||||
{
|
{
|
||||||
"if": "state=temporary",
|
"if": "state=temporary",
|
||||||
"then": "12 10"
|
"then": "12 10"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "note:state=has_highway_no",
|
||||||
|
"then": "0 8"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "note:state=has_highway_under_construction",
|
||||||
|
"then": "12 10"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -141,6 +172,21 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"question": "No filter"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": "Has missing links",
|
||||||
|
"osmTags": "note:state=has_highway_no"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"question": "Has links which are under construction",
|
||||||
|
"osmTags": "note:state=has_highway_under_construction"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"options": [
|
"options": [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue