-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Perhaps support reverse geocoding? #6
Comments
Hi, Geocoder already supports Google Maps reverse geocoding so why not use this provider and then the reverse method via the facade ? |
try {
var_dump(Geocoder::reverse(48.8234065, 2.3072665));
} catch (\Exception $e)
echo $e->getMessage();
} You should get something like:
|
Wow. Totally missed the reverse function somehow. Sorry about that. |
No problem ! :) |
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Would be pretty simple to implement, at least for Google Maps. I might just do it and submit a pull request.
https://developers.google.com/maps/documentation/geocoding/
The text was updated successfully, but these errors were encountered: