flutter_geocoder
flutter_geocoder copied to clipboard
Web support?
Since this package uses platform specific code and features i don't think this will be available soon...
Yep, the only web browser API available seems to be geolocation (https://developer.mozilla.org/fr/docs/Web/API/Geolocation_API).
You can use Google Geocoding API. A simple http call... https://developers.google.com/maps/documentation/geocoding/overview
Hi, In geocoder package if we use Geocoder.google(...) it uses Dart's HttpClient to forward and reverse geocoding. However, the dart HttpClient doesn't support the web. I've created a PR fixing this issue adding support for the web.