forked from MapComplete/MapComplete
Merge pull request #547 from pietervdvn/theme/street_lighting
Added separate colors for lit=no and missing tags, filter driveways
This commit is contained in:
commit
f1e6aac8b4
1 changed files with 14 additions and 3 deletions
|
@ -31,7 +31,8 @@
|
||||||
"and": [
|
"and": [
|
||||||
"highway!=",
|
"highway!=",
|
||||||
"lit!=no",
|
"lit!=no",
|
||||||
"lit!="
|
"lit!=",
|
||||||
|
"service!=driveway"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -102,7 +103,9 @@
|
||||||
"nl": "Alle straten"
|
"nl": "Alle straten"
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"osmTags": "highway!="
|
"osmTags": {
|
||||||
|
"and": ["highway!=", "service!=driveway", "highway!=platform"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"minZoom": 19,
|
"minZoom": 19,
|
||||||
"title": {
|
"title": {
|
||||||
|
@ -119,7 +122,15 @@
|
||||||
},
|
},
|
||||||
"mapRendering": [
|
"mapRendering": [
|
||||||
{
|
{
|
||||||
"color": "#a9a9a9"
|
"color": {
|
||||||
|
"render":"#a9a9a9",
|
||||||
|
"mappings": [
|
||||||
|
{
|
||||||
|
"if":"lit=no",
|
||||||
|
"then": "#303030"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
|
|
Loading…
Add table
Reference in a new issue