Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 835 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 835 Bytes

Geocoding and autocomplete with Google Maps and jQuery UI

A simple demo showing how to use the jQuery UI autocomplete widget in conjunction with Google Maps geocoding service.

See it in action here: rjshade.com/projects/gmaps-autocomplete/

Some more explanation here: rjshade.com/2012/03/27/Google-Maps-autocomplete-with-jQuery-UI

Use with Rails form helpers

I've had success using this with the SimpleForm gem:

= simple_form_for(@post) do |f|
    = f.input :address, :input_html =>{:id => 'gmaps-input-address'}, :placeholder => 'Start typing a place name...'

Get up and running

Clone this repository and open demo.html in your browser.