Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- This query find all parking (nodes or ways, i.e. areas) without a fee in the current bounding box
- -->
- <union>
- <query type="node">
- <has-kv k="amenity" v="parking"/>
- <bbox-query {{bbox}}/><!--this is auto-completed with the
- current map view coordinates.-->
- </query>
- <query type="way">
- <has-kv k="amenity" v="parking"/>
- <has-kv k="fee" modv="not" v="yes"/>
- <bbox-query {{bbox}}/><!--this is auto-completed with the
- current map view coordinates.-->
- </query>
- <query type="way">
- <has-kv k="parking" />
- <has-kv k="fee" modv="not" v="yes"/>
- <bbox-query {{bbox}}/><!--this is auto-completed with the
- current map view coordinates.-->
- </query>
- <recurse type="down"/>
- </union>
- <print/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement