forked from plepe/openstreetbrowser-categories-main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pt_amenities.json
45 lines (45 loc) · 1.34 KB
/
pt_amenities.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"type": "overpass",
"name": {
"ast": "Infraestructures",
"cs": "Občanská vybavenost",
"de": "Einrichtungen",
"en": "Amenities",
"fr": "Équipements",
"it": "Infrastrutture",
"ja": "生活環境",
"nl": "Voorzieningen",
"ru": "Транспортные принадлежности",
"uk": "Amenities"
},
"query": {
"14": [
"(",
"node[amenity~\"^(taxi|ticket_counter)$\"];",
"way[amenity~\"^(taxi|ticket_counter)$\"];",
"relation[amenity~\"^(taxi|ticket_counter)$\"];",
"node[railway~\"^(subway_entrance)$\"];",
"way[railway~\"^(subway_entrance)$\"];",
"relation[railway~\"^(subway_entrance)$\"];",
")"
]
},
"feature": {
"pre": [
"{% if tags.railway == 'subway_entrance' %}",
" {% set key = 'railway' %}",
" {% set value = tags.railway %}",
"{% else %}",
" {% set key = 'amenity' %}",
" {% set value = tags.amenity %}",
"{% endif %}"
],
"description": "{{ tagTrans(key, value) }}",
"markerSign": "{{ const[value] }}"
},
"const": {
"taxi": "🚖",
"ticket_counter": "🎫",
"subway_entrance": "🚉"
}
}