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
 
/*
This has been generated by the overpass-turbo wizard.
The original search was:
“type:way and highway=* and incline=*”
*/
[out:json][timeout:25];
// gather results
(
  // query part for: “highway=* and incline=*”
  way["highway"]["incline"]({{bbox}});
);
// print results
out geom;
 
{{style:
way {
  color: blue;
  fill-color: blue;
}
way[incline=~/%$/] {
  color: red;
  fill-color: red;
}
way[incline=~/^-?(1|2|3|4|5|6)(\..*)?%$/] {
  color: green;
  fill-color: green;
}
}}
100 m
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet