- May 11, 2018
-
-
Alex Reisner authored
-
Alex Reisner authored
Remove method: Geocoder::Results::Geoip2#data
-
Alex Reisner authored
-
Cayo Medeiros (yogodoshi) authored
-
- Apr 25, 2018
-
-
Alex Reisner authored
-
Alex Reisner authored
Fixes #1286.
-
- Apr 19, 2018
-
-
Alex Reisner authored
-
- Apr 09, 2018
-
-
Alex Reisner authored
-
Alex Reisner authored
-
Alex Reisner authored
Freegeoip/IPstack no longer provides keyless service.
-
- Apr 05, 2018
-
-
Alex Reisner authored
Use new /location endpoint for Telize
-
David authored
-
- Apr 04, 2018
-
-
David authored
-
- Mar 28, 2018
-
-
Alex Reisner authored
[] and []= methods were removed.
-
- Mar 22, 2018
-
-
Michael Holroyd authored
Update Geocodio to v1.3
-
Alex Reisner authored
Fixes #1273.
-
- Mar 13, 2018
-
-
Alex Reisner authored
-
Jordan Moncharmont authored
some google geocoding requests have bounds within the result. add a helper to extract these. * Add tests to cover results with no bounds In this case, calling .bounds should return nil. Oddly, calling viewport on a result with no viewport causes the current code to `fail`. I have preserved this behavior even though I think it to be a little odd.
-
Alex Reisner authored
but default to HTTPS (custom hosts may not support HTTPS). This partially reverts 7cb0acc9.
-
- Mar 09, 2018
-
-
Kris Khaira authored
There's no documentation that 20 is the default value for the radius when using near.
-
- Feb 28, 2018
-
-
Alex Reisner authored
-
Alex Reisner authored
-
Alex Reisner authored
-
- Feb 27, 2018
-
-
Alex Reisner authored
Make #near_scope_options public for Rails 5.2
-
Steven Harman authored
Rails 5.2 changed the receiver within a scope from `klass` to `relation`. With that, we no longer have private access to Geocoder::Store::ActiveRecord#near_scope_options, and so must make it public. see: https://github.com/rails/rails/pull/29301
-
Alex Reisner authored
This reverts commit 385aafa0.
-
-
- Feb 20, 2018
-
-
Alex Reisner authored
Should have been part of 7cb0acc9
-
Alex Reisner authored
Should have been part of 7cb0acc9
-
Alex Reisner authored
HTTP support will be discontinued according to this: https://lists.openstreetmap.org/pipermail/geocoding/2018-January/001918.html Fixes #1267
-
Alex Reisner authored
for Google Premier. No longer required, according to this page: https://developers.google.com/maps/premium/overview Fixes #1268
-
- Feb 16, 2018
-
-
Alex Reisner authored
Update geocod.io to use most recent API version
-
Alex Reisner authored
Updated geocod.io description to reflect that it also supports Canada
-
Mathias Hansen authored
-
Mathias Hansen authored
-
- Feb 04, 2018
-
-
Robert Schaefer authored
suggested by @alexreisner
- Jan 19, 2018
-
-
Alex Reisner authored
Raise bing errors for statuses 403, 500, 503
-
- Jan 16, 2018
-
-
German Velasco authored
Bing returns the status codes within the json response. When a request is forbidden, it will return a 403. If there is an internal server error, it will return a 500. And if the service is unavailable for some other reason, it will return a 503. That information was obtained from bing's [Status Codes and Error Handling](https://msdn.microsoft.com/en-us/library/ff701703.aspx) documentation. We handle those three status codes here to raise `Geocoder::RequestDenied` (for 403) and `Geocoder::ServiceUnavailable` (for 500 and 503). This allows for the users of the Geocoder to handle those errors in their applications.
-
- Jan 11, 2018
-
-
Robert Schaefer authored
-