Google Maps plugin

Plugin details

Provides helper methods for displaying google maps within your application.

Repositoryhttp://gmaps-on-rails.googlecode.com/svn/trunk Tags Maps LicenseUnknown

Documentation

Install the plugin:
ruby script/plugin install http://gmaps-on-rails.googlecode.com/svn/trunk

1 - Set your Google Maps API Key in environment.rb (or somewhere else if you'd prefer)

  # This key is good for localhost:3000, signup for more at http://www.google.com/apis/maps/signup.html
  GOOGLE_APPLICATION_ID = "ABQIAAAA3HdfrnxFAPWyY-aiJUxmqRTJQa0g3IQ9GZqIMmInSLzwtGDKaBQ0KYLwBEKSM7F9gCevcsIf6WPuIQ"



2 - Do something like this in a view.

  <%
  map = GoogleMap.new
  map.markers << GoogleMapMarker.new(:map => map, 
                                     :lat => 47.6597, 
                                     :lng => -122.318,
                                     :html => 'My House')
  %>
  <%= map.to_html %>
  
    <%= map.div %>
  




===Advanced Usage


1 - Use included icon classes

  # Available icon classes:
  # GoogleMapLetterIcon.new('A')
  # GoogleMapSmallIcon.new('yellow')
  <%
  map = GoogleMap.new
  icon = GoogleMapSmallIcon.new('blue')
  map.markers << GoogleMapMarker.new(:map => map, 
                                     :icon => icon,
                                     :lat => 47.6597, 
                                     :lng => -122.318,
                                     :html => 'My House')
  %>
  <%= map.to_html %>
  
    <%= map.div %>
  

Further Documentation

There is currently no advanced documentation for this plugin.

New documentation

Edit plugin | (0 older versions) | Last edited by: Guest, 8 months ago