searchByCoordinatesWithRadius abstract method

TaskHandle searchByCoordinatesWithRadius(
  1. GeoCircle circle,
  2. SearchOptions options,
  3. SearchCallback callback
)

Performs an asynchronous request to search for places based on given circular spatial filter.

This is the same process as reverse geocoding, except that more data is returned than just the Address that belongs to given coordinates. Note that coordinates can belong to more than one Place result. Provides candidate places sorted by relevance and located inside the radius of filter.

  • circle The coordinates where to search and radius of the circular spatial filter. Passed in form of GeoCircle.

  • 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 searchByCoordinatesWithRadius(GeoCircle circle, SearchOptions options, SearchCallback callback);