Skip to content

Instantly share code, notes, and snippets.

@RStankov
Created January 13, 2013 12:08
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 RStankov/4523773 to your computer and use it in GitHub Desktop.
Save RStankov/4523773 to your computer and use it in GitHub Desktop.
def maps_url(lat, lng, zoom, width, height)
query = {
center: "#{lat},#{lng}",
zoom: zoom,
size: "#{width}x#{height}"
}.to_query
"http://maps.google.com/?#{query}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment