Packages

Wrapper for the What3Words API

Current section

Files

Jump to
what3words README.md
Raw

README.md

# what3words Elixir wrapper
Use the what3words API in your Elixir app (see [the API documentation](http://developer.what3words.com/api)). πŸš€
## Installation
Pretty straightforward! Add the dependency to your `mix.exs`:
```
def deps do
[{:what3words, "~> 1.0.0"}]
end
```
and add your API key to your `config.exs` (get one [here](https://map.what3words.com/register?dev=true)):
```
config :what3words, key: "mykey"
```
You should be good to go! πŸ‘πŸ»
## Usage
[Hexdocs to the rescue! πŸ‘‹πŸ»](https://hexdocs.pm/what3words)
## Contributing
* Fork this repo
* Create your feature branch (`git checkout -b my-new-feature`)
* Commit your changes (`git commit -am 'Add some feature'`)
* Push to the branch (`git push origin my-new-feature`)
* Create a new Pull Request
## License
See [LICENSE](/LICENSE)