placemarkFromCoordinates function

Future<List<Placemark>> placemarkFromCoordinates(
  1. double latitude,
  2. double longitude
)

Returns a list of Placemark instances found for the supplied coordinates.

In most situations the returned list should only contain one entry. However in some situations where the supplied coordinates could not be resolved into a single Placemark, multiple Placemark instances may be returned.

Implementation

Future<List<Placemark>> placemarkFromCoordinates(
  double latitude,
  double longitude,
) =>
    GeocodingPlatform.instance!.placemarkFromCoordinates(
      latitude,
      longitude,
    );