mikebronner / nova-map-marker-field

Provides an visual interface for editing latitude and longitude coordinates.
MIT License
131 stars 36 forks source link

Geocode into address #16

Closed Reached closed 5 years ago

Reached commented 5 years ago

Hey @mikebronner ,

Well done on the package!

Is it possible to reverse geocode with this? So that I can get an address from coordinates?

mikebronner commented 5 years ago

Hi @Reached, this package doesn't do GeoCoding. For that I recommend https://github.com/geocoder-php/GeocoderLaravel which is perfectly suited to reverse-geocode your locations to addresses in PHP. You could trigger this to automatically happen in a model observer before saving.

Reached commented 5 years ago

Thanks @mikebronner, good suggestion !