Advertisement
sroller

Overpass Turbo example

Aug 7th, 2023
839
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.53 KB | None | 0 0
  1. /*
  2. This query looks for nodes, ways and relations
  3. with the given key/value combination.
  4. Choose your region and hit the Run button above!
  5. */
  6. [out:json][timeout:25];
  7. // gather results
  8. (
  9.   node["leisure"="slipway"] ({{bbox}});
  10.   node["canoe"="put_in"]({{bbox}});
  11. );
  12. // print results
  13. out body;
  14. >;
  15. out skel qt;
  16.  
  17. {{style: /* http://wiki.openstreetmap.org/wiki/Overpass_turbo/MapCSS */
  18.  
  19. node[leisure=slipway]
  20. { color:green; fill-color:lime; opacity:1; }
  21.  
  22. node[canoe=put_in]
  23. { color:red; fill-color:yellow; opacity:1; }
  24.  
  25. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement