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
 
/*
Cette requête est générée par l'outil overpass-turbo.
La recherche initiale est 
“Accès interdits aux véhicules à moteur
*/
[out:json][timeout:500];
 
// récupération des résultats
 
 // interrogation de “highway=* and motorcar=no and motorcycle=no and moped=no” 
( 
  node["highway"]["motorcar"="no"]["motorcycle"="no"]["moped"="no"]({{bbox}});
  way["highway"]["motorcar"="no"]["motorcycle"="no"]["moped"="no"]({{bbox}});
  relation["highway"]["motorcar"="no"]["motorcycle"="no"]["moped"="no"]({{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/B7b.png');
    icon-width: 30
  }
 
}}
20 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet