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:
Pieter Vander Vennet 2021-11-05 14:19:13 +01:00 committed by GitHub
commit f1e6aac8b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,8 @@
"and": [
"highway!=",
"lit!=no",
"lit!="
"lit!=",
"service!=driveway"
]
}
},
@ -102,7 +103,9 @@
"nl": "Alle straten"
},
"source": {
"osmTags": "highway!="
"osmTags": {
"and": ["highway!=", "service!=driveway", "highway!=platform"]
}
},
"minZoom": 19,
"title": {
@ -119,7 +122,15 @@
},
"mapRendering": [
{
"color": "#a9a9a9"
"color": {
"render":"#a9a9a9",
"mappings": [
{
"if":"lit=no",
"then": "#303030"
}
]
}
}
],
"tagRenderings": [