searchByCoordinates abstract method

TaskHandle searchByCoordinates(
  1. GeoCoordinates coordinates,
  2. SearchOptions options,
  3. SearchCallback callback
)

Performs an asynchronous search for Place instances based on the given geographic coordinates.

This is the same search type as reverse geocoding, except that more data is returned than just the Address related to the given coordinates. Note that more than one Place can be related to the given coordinates. The returned places are sorted by relevance.

  • coordinates The coordinates where to search.

  • options Search options.

  • callback Callback which receives result on the main thread.

Returns TaskHandle. Handle that will be used to manipulate execution of the task.

Implementation

TaskHandle searchByCoordinates(GeoCoordinates coordinates, SearchOptions options, SearchCallback callback);