1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
x
 
/*
This has been generated by the overpass-turbo wizard.
The original search was:
“(highway=tertiary or highway=tertiary_link) and maxspeed!=* in Álava”
*/
[out:json][timeout:25];
// fetch area “Álava” to search in
{{geocodeArea:Álava}}->.searchArea;
// gather results
(
  // query part for: “highway=tertiary and maxspeed!=*”
  node["highway"="tertiary"]["maxspeed"!~".*"](area.searchArea);
  way["highway"="tertiary"]["maxspeed"!~".*"](area.searchArea);
  relation["highway"="tertiary"]["maxspeed"!~".*"](area.searchArea);
  // query part for: “highway=tertiary_link and maxspeed!=*”
  node["highway"="tertiary_link"]["maxspeed"!~".*"](area.searchArea);
  way["highway"="tertiary_link"]["maxspeed"!~".*"](area.searchArea);
  relation["highway"="tertiary_link"]["maxspeed"!~".*"](area.searchArea);
);
// print results
out body;
>;
out skel qt;
10 km
Leaflet © OpenStreetMap contributors
1