Uses of Class
com.cercalia.sdk.model.reversegeocoding.ReverseGeocodeResult
Packages that use ReverseGeocodeResult
Package
Description
Reverse geocoding data models.
Core services for interacting with Cercalia APIs.
-
Uses of ReverseGeocodeResult in com.cercalia.sdk.model.reversegeocoding
Methods in com.cercalia.sdk.model.reversegeocoding that return ReverseGeocodeResultModifier and TypeMethodDescriptionReverseGeocodeResult.Builder.build()Builds a newReverseGeocodeResultinstance. -
Uses of ReverseGeocodeResult in com.cercalia.sdk.services
Methods in com.cercalia.sdk.services that return ReverseGeocodeResultModifier and TypeMethodDescription@Nullable ReverseGeocodeResultReverseGeocodingService.reverseGeocode(@NotNull Coordinate coord) Reverse geocode a coordinate to get address information.@Nullable ReverseGeocodeResultReverseGeocodingService.reverseGeocode(@NotNull Coordinate coord, @Nullable ReverseGeocodeOptions options) Reverse geocode a coordinate to get address information.Methods in com.cercalia.sdk.services that return types with arguments of type ReverseGeocodeResultModifier and TypeMethodDescription@NotNull List<ReverseGeocodeResult>ReverseGeocodingService.getIntersectingRegions(@NotNull String wkt, @NotNull String level) Get regions/municipalities intersecting a polygon (WKT).@NotNull CompletableFuture<List<ReverseGeocodeResult>>ReverseGeocodingService.getIntersectingRegionsAsync(@NotNull String wkt, @NotNull String level) Get regions/municipalities intersecting a polygon asynchronously.@NotNull CompletableFuture<ReverseGeocodeResult>ReverseGeocodingService.reverseGeocodeAsync(@NotNull Coordinate coord) Reverse geocode a coordinate asynchronously.@NotNull CompletableFuture<ReverseGeocodeResult>ReverseGeocodingService.reverseGeocodeAsync(@NotNull Coordinate coord, @Nullable ReverseGeocodeOptions options) Reverse geocode a coordinate asynchronously.@NotNull List<ReverseGeocodeResult>ReverseGeocodingService.reverseGeocodeBatch(@NotNull List<Coordinate> coords) Reverse geocode multiple coordinates in a single request (max 100).@NotNull List<ReverseGeocodeResult>ReverseGeocodingService.reverseGeocodeBatch(@NotNull List<Coordinate> coords, @Nullable ReverseGeocodeOptions options) Reverse geocode multiple coordinates in a single request (max 100).@NotNull CompletableFuture<List<ReverseGeocodeResult>>ReverseGeocodingService.reverseGeocodeBatchAsync(@NotNull List<Coordinate> coords, @Nullable ReverseGeocodeOptions options) Reverse geocode multiple coordinates asynchronously.