diff options
Diffstat (limited to 'photon')
-rw-r--r-- | photon/photon.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/photon/photon.go b/photon/photon.go index 046a8de..69e6eff 100644 --- a/photon/photon.go +++ b/photon/photon.go @@ -80,7 +80,7 @@ func Geocode(location string) ([]Coordinates, error) { q := url.Values{} q.Add("q", location) q.Add("osm_tag", "place:city") - q.Add("limit", "5") + q.Add("limit", "10") u.RawQuery = q.Encode() // Make request. |