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
46
47
48
49
50
 
<!--
This query looks for nodes, ways and relations 
with the given key/value combination.
Choose your region and hit the Run button above!
-->
{{key=amenity}}
{{value=vending_machine}}
{{key2=vending}}
{{value2=bicycle_tube}}
<osm-script output="json">
  <union>
    <query type="node">
      <has-kv k="{{key}}" v="{{value}}"/>
      <has-kv k="{{key2}}" v="{{value2}}"/>
      <bbox-query {{bbox}}/>
    </query>
    <query type="way">
      <has-kv k="{{key}}" v="{{value}}"/>
      <has-kv k="{{key2}}" v="{{value2}}"/>
      <bbox-query {{bbox}}/>
    </query>
    <query type="relation">
      <has-kv k="{{key}}" v="{{value}}"/>
      <has-kv k="{{key2}}" v="{{value2}}"/>
      <bbox-query {{bbox}}/>
    </query>
  </union>
  <print mode="body"/>
  <recurse type="down"/>
  <print mode="skeleton"/>
</osm-script>
{{style:
/* tag brand exists */
node[brand], line[brand], relation node[brand], relation way[brand], relation relation[brand]
{ color:green; fill-color:green; fill-opacity:0.75}
 
/* tag brand not exists */
node[!brand], line[!brand], relation node[!brand], relation way[!brand], relation relation[!brand]
{ color:grey; fill-color:black}
 
/* tag brand=Schwalbe exists */
node[brand=Schwalbe], line[brand=Schwalbe], relation node[brand=Schwalbe], relation way[brand=Schwalbe], relation relation[brand=Schwalbe]
{ color:blue; fill-color:blue; fill-opacity:0.75}
 
/* tag brand=Continetal exists */
node[brand=Continental], line[brand=Continental], relation node[brand=Continental], relation way[brand=Continental], relation relation[brand=Continental]
{ color:#FB9D00; fill-color:#FB9D00; fill-opacity:0.75}
 
 
}}
10 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet