From c9513b37b8d08ddf47c984fe2d70cade98adb9d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20B=C3=B6sch-Plepelits?= Date: Fri, 9 Jun 2017 20:43:12 +0200 Subject: [PATCH] Category 'gastro': include further amenity types --- gastro.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gastro.json b/gastro.json index 033fa31..d196994 100644 --- a/gastro.json +++ b/gastro.json @@ -1,6 +1,6 @@ { - "query": "(node[amenity~'^(restaurant|cafe)$'];way[amenity~'^(restaurant|cafe)$'];relation[amenity~'^(restaurant|cafe)$'];);", + "query": "(node[amenity~'^(bar|biergarten|cafe|fast_food|ice_cream|pub|restaurant)$'];way[amenity~'^(bar|biergarten|cafe|fast_food|ice_cream|pub|restaurant)$'];relation[amenity~'^(bar|biergarten|cafe|fast_food|ice_cream|pub|restaurant)$'];);", "minZoom": 16, - "markerSign": "{% if tags.amenity=='restaurant' %}🍴{% else %}☕{% endif %}", + "markerSign": "{% if tags.amenity=='bar' %}🍸{% elseif tags.amenity=='biergarten'%}🍻{% elseif tags.amenity=='cafe' %}☕{% elseif tags.amenity=='fast_food' %}🍔{% elseif tags.amenity=='ice_cream' %}🍨{% elseif tags.amenity=='pub' %}🍺{% else %}🍴{% endif %}", "featureBody": "{{ tags.amenity }}
Cuisine: {{ tags.cuisine|default('unknown') }}" }