You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while i'm trying geocoder same code in different platforms (IOS and Android), returning two diferent addresslines for the same co-ordinates
Flutter (Channel stable, 2.0.4, on Mac OS X 10.15.6 19G2021 darwin-x64, locale en-IN)
my code
final coordinates = geocoder.Coordinates(
79.766703732386, 17.79392640108037);
var addresses = await geocoder.Geocoder.local
.findAddressesFromCoordinates(coordinates);
The text was updated successfully, but these errors were encountered:
It might be precision you're giving, Depending on the device android could use more or less digits than IOs in the coordinates. Check that out by printing the coordinates while giving the same address!
while i'm trying geocoder same code in different platforms (IOS and Android), returning two diferent addresslines for the same co-ordinates
Flutter (Channel stable, 2.0.4, on Mac OS X 10.15.6 19G2021 darwin-x64, locale en-IN)
my code
final coordinates = geocoder.Coordinates(
79.766703732386, 17.79392640108037);
var addresses = await geocoder.Geocoder.local
.findAddressesFromCoordinates(coordinates);
The text was updated successfully, but these errors were encountered: