geocoding library

Classes

GeocodingPlatform
The interface that implementations of Geocoding must implement.
Location
Contains detailed location information.
Placemark
Contains detailed placemark information.

Functions

isPresent() Future<bool>
Returns true if there is a geocoder implementation present that may return results. If true, there is still no guarantee that any individual geocoding attempt will succeed.
locationFromAddress(String address) Future<List<Location>>
Returns a list of Location instances found for the supplied address.
placemarkFromCoordinates(double latitude, double longitude) Future<List<Placemark>>
Returns a list of Placemark instances found for the supplied coordinates.
setLocaleIdentifier(String localeIdentifier) Future<void>
Overrides default locale

Exceptions / Errors

NoResultFoundException
An exception thrown after unsuccessfully attempting to retrieve a Placemark from coordinates as double latitude and longitude or Location from address as String