View Source URL.Geo (URL v2.0.0)

Parses a geo URL

Summary

Functions

Parse a URI with the :scheme of "geo"

Types

@type t() :: %URL.Geo{
  alt: nil | number(),
  lat: number(),
  lng: number(),
  params: map()
}

Functions

@spec parse(URI.t()) :: {:ok, t()} | {:error, {module(), binary()}}

Parse a URI with the :scheme of "geo"

Example

iex> geo = URI.parse("geo:48.198634,-16.371648,3.4;crs=wgs84;u=40.0")
iex> URL.Geo.parse(geo)
{:ok,
 %URL.Geo{
   lat: 48.198634,
   lng: -16.371648,
   alt: 3.4,
   params: %{"crs" => "wgs84", "u" => 40.0}
 }}