placemarkFromAddress method

Future<List<Placemark>> placemarkFromAddress(
  1. String address
)

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

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

Implementation

Future<List<Placemark>> placemarkFromAddress(
  String address,
) {
  throw UnimplementedError(
      'placemarkFromAddress() has not been implementated.');
}