interface RevGeoSearchApi : RxContext
Defines the reverse geocoding search api.
abstract fun cancelSearchIfRunning(): Unit
Cancels the current reverse geocoding search request. |
|
abstract fun reverseGeocoding(query: ReverseGeocoderSearchQuery!): Single<ReverseGeocoderSearchResponse!>!
Performs reactive reverse geocoding search action based on provided query object and returns the result to Observers subscribed to returned Single. abstract fun reverseGeocoding(query: ReverseGeocoderSearchQuery!, listener: RevGeoSearchResultListener!): Unit
Performs reverse geocoding search action based on provided query object and returns the result with usage of RevGeoSearchCallback implementation. |
open class RevGeoSearchApiImpl : RevGeoSearchApi
Default implementation of reverse geocoding search service's api. |