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
 
/*
This query looks for nodes, ways and relations 
with the given key.
Choose your region and hit the Run button above!
*/
[out:xml]/*fixed by auto repair*/[timeout:25];
// gather results
(
  // query part for: “"mtb:scale"=*”
  node["mtb:scale"]({{bbox}});
  way["mtb:scale"]({{bbox}});
  relation["mtb:scale"]({{bbox}});
);
// print results
out meta;/*fixed by auto repair*/
>;
out meta qt;/*fixed by auto repair*/
 
{{style:
way{
  color:black;
  width:3;
  opacity:1;
    }
 
way[mtb:scale=0]
{color:blue;width:1;}
way[mtb:scale=1]
{color:brown;width:3;}
way[mtb:scale=2]
{color:orange;width:3;}
way[mtb:scale=3]
{color:red;width:3;}
}}
1 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet