forked from MapComplete/MapComplete
Themes(aed): change marker size and colour based on access and opening hours
This commit is contained in:
parent
1ee0e5f462
commit
1709ccf403
1 changed files with 95 additions and 3 deletions
|
@ -52,17 +52,109 @@
|
||||||
{
|
{
|
||||||
"icon": "square",
|
"icon": "square",
|
||||||
"color": {
|
"color": {
|
||||||
"render": "#008754",
|
"render": "#878787",
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
"if": "_recently_surveyed=true",
|
"if": {
|
||||||
|
"or": [
|
||||||
|
"access=private",
|
||||||
|
"access=no"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"then": "#876563"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "access=customers",
|
||||||
|
"then": "#87763d"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": {
|
||||||
|
"or": [
|
||||||
|
"opening_hours=",
|
||||||
|
"opening_hours=unknown",
|
||||||
|
"opening_hours=closed",
|
||||||
|
"opening_hours=off"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"then": "#87763d"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": {
|
||||||
|
"and": [
|
||||||
|
"_recently_surveyed=true",
|
||||||
|
{
|
||||||
|
"or": [
|
||||||
|
"access=yes",
|
||||||
|
"access=public",
|
||||||
|
"access=permissive"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"then": "#28ba3d"
|
"then": "#28ba3d"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": {
|
||||||
|
"or": [
|
||||||
|
"access=yes",
|
||||||
|
"access=public",
|
||||||
|
"access=permissive"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"then": "#008754"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"iconSize": {
|
||||||
|
"render": "20,20",
|
||||||
|
"mappings": [
|
||||||
|
{
|
||||||
|
"if": {
|
||||||
|
"and": [
|
||||||
|
{
|
||||||
|
"or": [
|
||||||
|
"access=yes",
|
||||||
|
"access=public",
|
||||||
|
"access=permissive"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"opening_hours!=",
|
||||||
|
"opening_hours!=unknown",
|
||||||
|
"opening_hours!=closed",
|
||||||
|
"opening_hours!=off"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"then": "40,40"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"icon": "./assets/layers/defibrillator/defibrillator.svg"
|
"icon": "./assets/layers/defibrillator/defibrillator.svg",
|
||||||
|
"iconSize": {
|
||||||
|
"#": "Keep in sync with the same code above",
|
||||||
|
"render": "20,20",
|
||||||
|
"mappings": [
|
||||||
|
{
|
||||||
|
"if": {
|
||||||
|
"and": [
|
||||||
|
{
|
||||||
|
"or": [
|
||||||
|
"access=yes",
|
||||||
|
"access=public",
|
||||||
|
"access=permissive"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"opening_hours!=",
|
||||||
|
"opening_hours!=unknown",
|
||||||
|
"opening_hours!=closed",
|
||||||
|
"opening_hours!=off"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"then": "40,40"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"location": [
|
"location": [
|
||||||
|
|
Loading…
Reference in a new issue