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 
"Limitations de vitesse à 6 km/h en France"
*/
[out:json][timeout:500];
 
// recherche en France
{{geocodeArea:France}}->.searchArea;
 
// récupération des résultats
 
 // interrogation de “(maxspeed=6 and highway=*) or (maxspeed:forward=6 and highway=*) or (maxspeed:backward=6 and highway=*)” 
( 
  node["maxspeed"="6"]["highway"](area.searchArea);
  way["maxspeed"="6"]["highway"](area.searchArea);
  relation["maxspeed"="6"]["highway"](area.searchArea);
  
  node["maxspeed:forward"="6"]["highway"](area.searchArea);
  way["maxspeed:forward"="6"]["highway"](area.searchArea);
  relation["maxspeed:forward"="6"]["highway"](area.searchArea);
  
  node["maxspeed:backward"="6"]["highway"](area.searchArea);
  way["maxspeed:backward"="6"]["highway"](area.searchArea);
  relation["maxspeed:backward"="6"]["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/B14_6.png');
    icon-width: 30
  }
 
}}
100 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet