ArcgisGeocode
Provides basic geocoding capabilities via the ArcGIS World Geocoding Service REST APIs
Installation
The package can be installed from Hex as:
Add arcgis_geocode to your list of dependencies in
mix.exs
:def deps do [{:arcgis_geocode, "~> 0.2.0"}] end
Ensure arcgis_geocode is started before your application:
def application do [applications: [:arcgis_geocode]] end
Configure the arcgis_geocode application to use your ArcGIS credentials:
config :arcgis_geocode, client_id: "YOUR_CLIENT_ID", client_secret: "YOUR_CLIENT_SECRET"