forked from MapComplete/MapComplete
Fix highway=path and cycleway=track not showing
This commit is contained in:
parent
f83090ccfd
commit
c1d94cfdee
1 changed files with 23 additions and 4 deletions
|
@ -35,7 +35,11 @@
|
||||||
"highway=cycleway",
|
"highway=cycleway",
|
||||||
"cycleway=shared_lane",
|
"cycleway=shared_lane",
|
||||||
"cycleway=lane",
|
"cycleway=lane",
|
||||||
"cyclestreet=yes"
|
"cycleway=track",
|
||||||
|
"cyclestreet=yes",
|
||||||
|
{
|
||||||
|
"and": ["highway=path", "bicycle=designated"]
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -46,7 +50,9 @@
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
"if": "highway=cycleway",
|
"if": {
|
||||||
|
"or": ["highway=cycleway", "highway=path"]
|
||||||
|
},
|
||||||
"then": {
|
"then": {
|
||||||
"nl": "Fietsweg",
|
"nl": "Fietsweg",
|
||||||
"en": "Bike road"
|
"en": "Bike road"
|
||||||
|
@ -62,10 +68,17 @@
|
||||||
{
|
{
|
||||||
"if": "cycleway=lane",
|
"if": "cycleway=lane",
|
||||||
"then": {
|
"then": {
|
||||||
"nl": "Fietsweg naast de weg",
|
"nl": "Fietsstrook",
|
||||||
"en": "Bike lane"
|
"en": "Bike lane"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"if": "cycleway=track",
|
||||||
|
"then": {
|
||||||
|
"en": "Bike road next to the road",
|
||||||
|
"nl": "Fietsweg naast de weg"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"if": "cyclestreet=yes",
|
"if": "cyclestreet=yes",
|
||||||
"then": {
|
"then": {
|
||||||
|
@ -447,9 +460,15 @@
|
||||||
"render": "#aaaaaa",
|
"render": "#aaaaaa",
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
"if": "highway=cycleway",
|
"if": {
|
||||||
|
"or": ["highway=cycleway", "highway=path"]
|
||||||
|
},
|
||||||
"then": "#00ff00"
|
"then": "#00ff00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"if": "cycleway=track",
|
||||||
|
"then": "#45c445"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"if": "cycleway=shared_lane",
|
"if": "cycleway=shared_lane",
|
||||||
"then": "#ff0000"
|
"then": "#ff0000"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue