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
32
33
34
35
36
37
38
39
 
/*
Cette requête est générée par l'outil overpass-turbo.
La recherche initiale est 
“Interdictions de dépasser pour les véhicules de transport de marchandises en France"
*/
[out:json][timeout:500];
 
// recherche en France
{{geocodeArea:France}}->.searchArea;
 
// récupération des résultats
 
 // interrogation de “highway=* and (overtaking:hgv=no or overtaking:hgv=forward or overtaking:hgv=backward)” 
( 
  node["overtaking:hgv"="no"]["highway"](area.searchArea);
  way["overtaking:hgv"="no"]["highway"](area.searchArea);
  relation["overtaking:hgv"="no"]["highway"](area.searchArea);
  
  node["overtaking:hgv"="forward"]["highway"](area.searchArea);
  way["overtaking:hgv"="forward"]["highway"](area.searchArea);
  relation["overtaking:hgv"="forward"]["highway"](area.searchArea);
  
  node["overtaking:hgv"="forward"]["highway"](area.searchArea);
  way["overtaking:hgv"="forward"]["highway"](area.searchArea);
  relation["overtaking:hgv"="forward"]["highway"](area.searchArea);
);
 
// afficher les résultats
out center;
 
/* feuille de style MapCSS */
{{style:
 
  node, way, relation {
    icon-image: url('http://regards-sur-la-route.fr/images/sara/signalisation/B3a.png');
    icon-width: 30
  }
 
}}
100 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet