Sha256: c2f37b496dc4a0a0e627435f3131daf437462a99e453c74421419da1e6b10691

Contents?: true

Size: 796 Bytes

Versions: 4

Compression:

Stored size: 796 Bytes

Contents

# GogoMaps

Super simple geocode interface for Ruby, by using awesome GoogleMaps API

## Installation

Install gem as you like.

    $ gem install gogo_maps

or

    $ echo "gem 'gogo_maps'" >> Gemfile

## Demo
```ruby
require 'gogo_maps'

# Address to lat and lng.
GogoMaps.get(address: '長野県上高井郡高山村')
# => { lat: 36.6797676, lng: 138.3632554}

GogoMaps.get(address: '神奈川県横浜市港北区日吉')
# => { lat: 35.5565107, lng: 139.6460026 }

# Lat and lng to Address.
GogoMaps.get(latlng: '35.6506135,139.7539103')
# => '日本, 東京都港区芝1丁目11−14'

GogoMaps.get(latlng: '37.358126,-122.050636', language: :en)
# => '902 Rockefeller Drive, Sunnyvale, CA 94087, USA'
```

## Contributing
Please feel free to.
Make you commiter if you wanna be.

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gogo_maps-0.2.71820000 README.md
gogo_maps-0.2.71800000 README.md
gogo_maps-0.2.71000000 README.md
gogo_maps-0.2.70000000 README.md