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
 
/*
tracktype=* migrieren auf einen anderen Highwaytype
https://forum.openstreetmap.org/viewtopic.php?id=68956
 
red = no surface and smoothness tagging
yellow = only surface tagging
orange = only smoothness tagging
green = surface and smoothness tagging :)
*/
 
{{style:
  way {
    color:red ; fill-color:red;
  }
  way[surface] {
    color:yellow ; fill-color:yellow;
  }
  way[smoothness] {
    color:orange ; fill-color:orange;
  }
  way[surface][smoothness] {
    color:green ; fill-color:green;
  }
}}
 
 
[out:json][timeout:25];
// gather results
(
  // query part for: “track”
  way["tracktype"]["highway"!="track"]({{bbox}});
);
// print results
out body;
>;
out skel qt;
500 m
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet