select

abstract fun select(suggestion: SearchSuggestion, options: SelectOptions, executor: Executor, callback: SearchSelectionCallback): SearchRequestTask

The second step of the offline forward geocoding. Call this function to get a SearchResult (with coordinates) from a SearchSuggestion.

Return

SearchRequestTask object which allows to cancel the request.

See also

Parameters

suggestion

Search suggestion to resolve and get the final result with address and coordinates.

options

Options used for controlling internal "select" operation logic.

executor

Executor used for events dispatching. By default events are dispatched on the main thread.

callback

Callback to retrieve SearchResult with resolved coordinates.

open fun select(suggestion: SearchSuggestion, options: SelectOptions, callback: SearchSelectionCallback): SearchRequestTask

The second step of the offline forward geocoding. Call this function to get a SearchResult (with coordinates) from a SearchSuggestion.

Return

SearchRequestTask object which allows to cancel the request.

See also

Parameters

suggestion

Search suggestion to resolve and get the final result with address and coordinates.

options

Options used for controlling internal "select" operation logic.

callback

Callback to retrieve SearchResult with resolved coordinates.

open fun select(suggestion: SearchSuggestion, callback: SearchSelectionCallback): SearchRequestTask

The second step of the offline forward geocoding. Call this function to get a SearchResult (with coordinates) from a SearchSuggestion.

Return

SearchRequestTask object which allows to cancel the request.

See also

Parameters

suggestion

Search suggestion to resolve and get the final result with address and coordinates.

callback

Callback to retrieve SearchResult with resolved coordinates.