Google Maps

Elixir wrapper around Google Maps APIs

Services

Methods

Installation

If available in Hex, the package can be installed as:

  1. Add google_maps to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:google_maps, "~> 0.3.0"}]
end
```
  1. Ensure google_maps is started before your application:
```elixir
def application do
  [applications: [:google_maps]]
end
```
  1. In your application's config/config.exs, add:
```elixir
config :google_maps, 
  api_key: "YOUR API KEY HERE"
```

Or you can use GOOGLE_MAPS_API_KEY system environment variable when running in iex.