Browse Source

Update 002-search.md

pull/4/head^2^2
Diana Shkolnikov 9 years ago
parent
commit
e889e47bf0
  1. 26
      getting-started/002-search.md

26
getting-started/002-search.md

@ -9,30 +9,30 @@ Geospacial search, frequently reffered to as **geocoding** is the process of mat
In the simplest search, all you provide is the text you'd like to match in any part of the location details. So to accomplish this, you just set the `text` parameter to whatever you want to find. Let's see a few examples. In the simplest search, all you provide is the text you'd like to match in any part of the location details. So to accomplish this, you just set the `text` parameter to whatever you want to find. Let's see a few examples.
#### Find an address #### Find a venue
You would set the following parameters in your query url: Let's search for **YMCA**. You would set the following parameters in your query url:
| parameter | value | | parameter | value |
| :--- | :--- | | :--- | :--- |
| `api_key` | [get yours here](https://mapzen.com/developers) | | `api_key` | [get yours here](https://mapzen.com/developers) |
| `text` | ***30 West 26th Street, New York, NY*** | | `text` | ***30 West 26th Street, New York, NY*** |
> [/v1/search?api_key={YOUR-KEY}&___text=30 West 26th Street, New York, NY___](https://search.mapzen.com/v1/search?api_key={YOUR_API_KEY}&text=30 West 26th Street, New York, NY) > [/v1/search?api_key={YOUR-KEY}&___text=YMCA___](https://search.mapzen.com/v1/search?api_key={YOUR_API_KEY}&text=YMCA)
_...go ahead, and click that link, we'll wait_ _...go ahead, and click that link, we'll wait_
You probably saw some cool **GeoJSON**, more on that later, with the following places in the results: You probably saw some cool **GeoJSON**, more on that later, with the following places in the results:
> * 30 West 26th Street, Manhattan, NY > * YMCA, Bargoed Community, United Kingdom
> * 30 West 26th Street, Manhattan, NY * YMCA, Nunspeet, Gelderland
> * 30 West 26th Street, Manhattan, NY * YMCA, Belleville, IL
> * 30 West 26th Street, Merced, CA * YMCA, Forest City, IA
> * 307 West 26th Street, Manhattan, NY * YMCA, Fargo, ND
> * 300 West 26th Street, Manhattan, NY * YMCA, Taipei, Taipei City
> * 307 West 26th Street, Manhattan, NY * YMCA, Orpington, Greater London
> * 301 West 26th Street, Manhattan, NY * YMCA, Frisco, TX
> * 30 East 26th Street, Manhattan, NY * YMCA, Jefferson, OH
> * 2 West 26th Street, Manhattan, NY * YMCA, Belleville, IL
#### Find a venue #### Find a venue
As mentioned above, query `text` can be a partial or full name of a place we're looking for. So here's an example of another way of finding that address we just searched for: As mentioned above, query `text` can be a partial or full name of a place we're looking for. So here's an example of another way of finding that address we just searched for:

Loading…
Cancel
Save