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
 
/*
displays across incline
*/
[out:json][timeout:25];
// gather results
(
  way["highway"="footway"]({{bbox}});
);
// print results
out body;
>;
out skel qt;
{{style: /* this is the MapCSS stylesheet */
 
way
{ color:gray; fill-color:gray}
way:placeholder
{opacity:0; fill-opacity:0}
 
way[incline:across]
{ color:red; fill-color:red}
 
way:placeholder[incline:across]
{opacity:1; fill-opacity:0.5}
 
}}
30 m
Leaflet © OpenStreetMap contributors
1