Skip to content

Instantly share code, notes, and snippets.

@barce
Created February 15, 2010 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barce/305009 to your computer and use it in GitHub Desktop.
Save barce/305009 to your computer and use it in GitHub Desktop.
@map = GMap.new("map")
@map.control_init(:large_map => true,:map_type => false)
loc3=MultiGeocoder.geocode('Seattle, 98109')
ianazones = GMarker.new([loc3.lat,loc3.lng],
:info_window => "Welcome to Seattle",
:title => "Seattle 98109")
@map.center_zoom_init([loc3.lat,loc3.lng], 14)
@map.overlay_init(ianazones)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment