Geolixir.Result (geolixir v0.1.3)
View SourceRepresents a standardized result from a geocoding or reverse geocoding operation.
This struct consolidates information parsed from various provider responses into a consistent format.
Summary
Types
@type t() :: %Geolixir.Result{ bounds: Geolixir.Bounds.t() | nil, coordinates: Geolixir.Coords.t() | nil, location: Geolixir.Location.t() | nil, metadata: map() | nil }
The struct holding standardized geolocation results.
:coordinates: AGeolixir.Coordsstruct with latitude and longitude.:bounds: AGeolixir.Boundsstruct representing the bounding box, if available.:location: AGeolixir.Locationstruct containing address components.:metadata: The original, raw response map from the provider for debugging or accessing provider-specific fields.