0.0
No commit activity in last 3 years
No release in over 3 years
Transform a simple text field in a Google Maps Autocomplete search field, bringing the name of streets, cities or establishments.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0

Runtime

 Project Readme

GeoContrast Demo page

GeoContrast allows you to transform a simple text field in a Google Maps Autocomplete search field, bringing the name of streets, cities or an establishments.

Installation

Install it yourself as:

$ gem install geo_contrast

Or add this line to your application's Gemfile:

gem 'geo_contrast'

And then execute:

$ bundle

Usage

In application.js insert the following line:

//= require geo_contrast

Inside application.html.erb call the Google Places Autocomplete:

<%= javascript_include_tag 'application', '//maps.googleapis.com/maps/api/js?libraries=places','data-turbolinks-track' => true %>

Then, inside your form just add a class (or id) to your input field and inside application.js call the GeoContrast initialize function:

$('.your_class').geoContrast();

Customizing the results

You have a few options to customize the return address from Google. You can specify the kind of search with this options:

Format

With this it returns the short address. Eg. "San Francisco":

$('.your_class').geoContrast({format: "short"});

This one returns the long version of the address. Eg. "San Francisco, California, United States of America":

$('.your_class').geoContrast({format: "formatted"});

Gmaps Options

If you want to search just for cities, for example, you can pass a option to specify this:

$('.your_class').geoContrast({format: "formatted", options_gmaps: {types: ['(cities)']}});

The options are:

  1. 'geocode' -> For addresses.
  2. '(regions)' -> For administrative regions.
  3. 'establishment' -> For businesses.
  4. '(cities)' -> For just city names.

ROADMAP

Here is the next things that will be (probably) implemented:

  1. Better way to handle coordinate fields (latitude, longitude)
  2. Find a way to put Google Maps easily
  3. Easy integration with SimpleForm

...and more

Contributing

  1. Fork it ( https://github.com/codelandev/geo-contrast/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request