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
 
/* Get all the ways that use the deprecated cycleway=opposite* tag
 * Make the ones with oneway:bicycle=no orange and the ones without red
 */
 
[out:json][timeout:50];
// gather results
(
  area["name:nl"="Nederland"][admin_level=2];
  way(area)["cycleway"="opposite"]["highway"]({{bbox}});
  way(area)["cycleway"="opposite"]["highway"]["oneway:bicycle"="no"]({{bbox}});
  way(area)["cycleway"="opposite_lane"]["highway"]({{bbox}});
  way(area)["cycleway"="opposite_lane"]["highway"]["oneway:bicycle"="no"]({{bbox}});
  way(area)["cycleway"="opposite_track"]["highway"]({{bbox}});
 
 );
// print results
out body;
>;
out skel qt;
 
{{style:
    way[!oneway:bicycle]
        { color:red }
        { width: 10 }
        { symbol-size: 1 }
    way[oneway:bicycle]
        { color:orange }
        { width: 10 }
        { symbol-size: 1 }
}}
2 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet