techgaun / ex_google

Google Cloud SDK for Elixir

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ExGoogle

Build Status Hex version Hex downloads

Google Cloud SDK for Elixir

This is a work in progress. Currently, it supports google places and maps API.

Installation

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

  1. Add ex_google to your list of dependencies in mix.exs:
def deps do
  [{:ex_google, "~> 0.1.1"}]
end

Or from github (recommended for now):

def deps do
  [{:ex_google, github: "techgaun/ex_google"}]
end
  1. Ensure ex_google is started before your application:
def application do
  [applications: [:ex_google]]
end

Configuration

  1. Configure ex_google using the appropriate api key and output format. Currently, only json output is supported. Other formats parser are more than welcome.

  2. Now, you can use the places and maps api.

config :ex_google, api_key: System.get_env("GOOGLE_API_KEY"),
                   output: "json"

Usage

You can import and use the google places and maps api as below. Also, note that you can pass any query parameter that google apis support.

alias ExGoogle.Maps.Api, as: Maps
# google maps reverse geocoding
Maps.search(%{latlng: "40.714224,-73.961452"})

# google maps geocoding
Maps.search(%{address: "1600 Amphitheatre Parkway, Mountain View, CA"})

# Advanced parameters
Maps.search(%{latlng: "40.714224,-73.961452", location_type: "ROOFTOP|RANGE_INTERPOLATED|GEOMETRIC_CENTER", result_type: "street_address"})
alias ExGoogle.Places.Api, as: Places
# place detail search
Places.search(%{placeid: "ChIJL_zTW3FdvIcR2qmNStcaCdA"})

# text search
Places.search(%{query: "Restaurant"}, :text)

# nearby search
Places.search(%{location: "38,-94", radius: 1000}, :nearby)

About

Google Cloud SDK for Elixir

License:Apache License 2.0


Languages

Language:Elixir 100.0%