Add ice cream to vending_machine layer

This commit is contained in:
Robin van der Linde 2024-09-24 23:21:02 +02:00
parent f15f381539
commit f830870ca3
Signed by untrusted user: Robin-van-der-Linde
GPG key ID: 53956B3252478F0D
10 changed files with 216 additions and 176 deletions

View file

@ -143,6 +143,10 @@
{
"if": "vending=condoms",
"then": "./assets/layers/vending_machine/condom.svg"
},
{
"if": "vending=ice_cream",
"then": "./assets/layers/ice_cream/ice_cream.svg"
}
]
}
@ -336,6 +340,15 @@
]
},
"then": "circle:white;./assets/themes/stations/public_transport_tickets.svg"
},
{
"if": {
"and": [
"_vending_count>1",
"vending~.*ice_cream.*"
]
},
"then": "circle:white;./assets/layers/ice_cream/ice_cream.svg"
}
]
}
@ -530,6 +543,14 @@
},
"icon": "./assets/layers/vending_machine/egg.svg"
},
{
"if": "vending=ice_cream",
"then": {
"en": "Ice cream is sold",
"nl": "IJs wordt verkocht"
},
"icon": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"if": "vending=cheese",
"then": {
@ -1186,6 +1207,13 @@
},
"osmTags": "vending~i~.*eggs.*"
},
{
"question": {
"en": "Sale of ice cream",
"nl": "Verkoop van ijs"
},
"osmTags": "vending~i~.*ice_cream.*"
},
{
"question": {
"en": "Sale of cheese",
@ -1353,4 +1381,4 @@
"enableImproveAccuracy": true,
"enableRelocation": true
}
}
}