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
 
/*
Cette requête est générée par l'outil overpass-turbo.
La recherche initiale est 
"Tunnels sur autoroute avec affichage du nom en France"
*/
[out:json][timeout:500];
 
// recherche en France
{{geocodeArea:France}}->.searchArea;
 
// récupération des résultats
 
 // interrogation de “tunnel=yes and highway=motorway” 
( 
  way["tunnel"="yes"]["highway"="motorway"](area.searchArea);
);
 
// afficher les résultats
out body;
>;
out skel qt;
 
/* feuille de style MapCSS */
{{style:
 
  way{ 
    text: tunnel:name;
    text-offset: -8;
    icon-image: url('http://regards-sur-la-route.fr/images/sara/signalisation/C111.png');
    icon-width: 40;
  }
  
}}
 
 
100 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet