searchByAddress abstract method

TaskHandle searchByAddress(
  1. AddressQuery query,
  2. SearchOptions options,
  3. SearchCallback callback
)

Performs an asynchronous address query search for Place instances.

This is the same type of search as forward geocoding, except that more data is returned than just the geographic coordinates of a given address. Note that an address can belong to more than one Place result, although all found places will share the same geographic coordinates. The returned places are sorted by relevance.

  • query Desired free-form address query text to search.

  • options Search options.

  • callback Callback which receives the result on the main thread.

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

Implementation

TaskHandle searchByAddress(AddressQuery query, SearchOptions options, SearchCallback callback);