mirror of
https://github.com/Jieyab89/OSINT-Cheat-sheet.git
synced 2026-02-27 22:02:58 -08:00
13 lines
249 B
Markdown
13 lines
249 B
Markdown
```
|
|
/*
|
|
This query looks for nodes, ways and relations
|
|
with the given key/value combination.
|
|
Choose your region and hit the Run button above!
|
|
*/
|
|
[out:json][timeout:25];
|
|
// gather results
|
|
nwr["bridge"="yes"]({{bbox}});
|
|
// print results
|
|
out geom;
|
|
```
|