Skip to content

Commit

Permalink
fix(docs): removing leading "~" from bbox and near examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans Kristian Flaatten committed Dec 14, 2015
1 parent ecd79bb commit 71d85b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ useful when building an API and accepting various user specificed queries.

| operation | query string | query object |
|-----------|---------------|--------------|
| bbox | `?bbox=~0,1,2,3` | `{ geojson: { $geoWithin: { $geometry: { … } } } }` |
| near | `?near=~0,1` | `{ geojson: { $near: { $geometry: { … } } } }` |
| bbox | `?bbox=0,1,2,3` | `{ geojson: { $geoWithin: { $geometry: { … } } } }` |
| near | `?near=0,1` | `{ geojson: { $near: { $geometry: { … } } } }` |

* Custom query functions
* `after` (date)
Expand Down

0 comments on commit 71d85b2

Please sign in to comment.