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 
"Routes et chemins éclairés"
*/
[out:json][timeout:500];
 
// récupération des résultats
 
 // interrogation de “highway=* and (lit=yes or lit=no)” 
( 
  way["highway"]["lit"="yes"]({{bbox}});
  way["highway"]["lit"="no"]({{bbox}});
);
 
// afficher les résultats
out body;
>;
out skel qt;
 
/* feuille de style MapCSS */
{{style:
 
  way [lit=yes]{
    color:orange;
    opacity:0.7;
    width:5;
  }
  
  way [lit=no]{
    color:black;
    opacity:0.7;
    width:5;
  }
  
}}
1 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet