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
 
[out:json][timeout:60];
 
{{geocodeArea:Norway}}
  ->.boundary;
 
(
  way["highway"="motorway"]
     (area.boundary)
     (if:lrs_in(1,
                per_vertex(angle() < -50
                           || angle() > 50
                          )
               )
     );
  way["highway"="motorway_link"]
     (area.boundary)
     (if:lrs_in(1,
                per_vertex(angle() < -50
                           || angle() > 50
                          )
               )
     );
);
 
out geom;
100 m
Leaflet © OpenStreetMap contributors
1