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
 
/*
Cette requête est générée par l'outil overpass-turbo.
La recherche initiale est 
"Échangeurs ayant le n°69 en France"
*/
[out:json][timeout:500];
 
// recherche en France
{{geocodeArea:France}}->.searchArea;
 
// récupération des résultats
 
 // interrogation de “highway=motorway_junction and ref=69” 
( 
  node["highway"="motorway_junction"]["ref"="69"](area.searchArea);
);
 
// afficher les résultats
out body;
>;
out skel qt;
 
/* feuille de style MapCSS */
{{style:
 
  node {
    icon-image: url('http://regards-sur-la-route.fr/images/sara/signalisation/SE2b_69.png');
    icon-width: 30;
    icon-height: 14;    
  }
 
}}
100 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet