HybridReverseGeocoder
@RestrictToExtendedFlavor(value = [ExternalScope.LIBRARY_GROUP] )
Deprecated
This will be removed from future releases after 2027-02-05.
Implementation of the TomTom's Hybrid Reverse Geocoding API.
The hybrid reverse geocoder combines the online and offline reverse geocoding services. Both online and offline services are triggered in parallel. If online service returns a result, the offline service request is cancelled. If the online service fails to provide a result, the offline service is used as a fallback.
See also
Types
Link copied to clipboard
Contains the factory methods for creating instances of HybridReverseGeocoder.
Functions
Link copied to clipboard
open override fun reverseGeocode(options: ReverseGeocoderOptions): Result<ReverseGeocoderResponse, SearchFailure>
Performs reverse geocoding using the provided ReverseGeocoderOptions object.
open override fun reverseGeocode(options: ReverseGeocoderOptions, callback: ReverseGeocoderCallback): Cancellable
Performs reverse geocoding using the provided ReverseGeocoderOptions object. This is an asynchronous operation; the result is provided through callback.