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
 
/*
Cette requête est générée par l'outil overpass-turbo.
La recherche initiale est 
"Voies affectées : tout droit, tout droit, à droite"
*/
[out:json][timeout:200];
 
// récupération des résultats
 
 // interrogation de “highway=* and ((turn:lanes=through|through|right or turn:lanes=through|through|slight_right) or (turn:lanes:forward=through|through|right or turn:lanes:forward=through|through|slight_right) or (turn:lanes:backward=through|through|right or turn:lanes:backward=through|through|slight_right))” 
( 
  way["highway"]["turn:lanes"="through|through|right"]({{bbox}});   
  way["highway"]["turn:lanes"="through|through|slight_right"]({{bbox}});   
  way["highway"]["turn:lanes:forward"="through|through|right"]({{bbox}});   
  way["highway"]["turn:lanes:forward"="through|through|slight_right"]({{bbox}});   
  way["highway"]["turn:lanes:backward"="through|through|right"]({{bbox}});   
  way["highway"]["turn:lanes:backward"="through|through|slight_right"]({{bbox}});     
);
 
// afficher les résultats
out center;
 
/* feuille de style MapCSS */
{{style:
 
  way {
    icon-image: url('http://regards-sur-la-route.fr/images/sara/signalisation/C24b_ex2_2.png');
    icon-width: 30
  }
 
}}
2 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet