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
 
/*
Cette requête est générée par l'outil overpass-turbo.
La recherche initiale est 
"Limitations de vitesse à 45 km/h"
*/
[out:json][timeout:500];
 
// récupération des résultats
 
 // interrogation de “(maxspeed=45 and highway=*) or (maxspeed:forward=45 and highway=*) or (maxspeed:backward=45 and highway=*)” 
( 
  node["maxspeed"="45"]["highway"]({{bbox}});
  way["maxspeed"="45"]["highway"]({{bbox}});
  relation["maxspeed"="45"]["highway"]({{bbox}});
  
  node["maxspeed:forward"="45"]["highway"]({{bbox}});
  way["maxspeed:forward"="45"]["highway"]({{bbox}});
  relation["maxspeed:forward"="45"]["highway"]({{bbox}});
  
  node["maxspeed:backward"="45"]["highway"]({{bbox}});
  way["maxspeed:backward"="45"]["highway"]({{bbox}});
  relation["maxspeed:backward"="45"]["highway"]({{bbox}});
);
 
// 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_45.png');
    icon-width: 30
  }
 
}}
10 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet