Skip to content

Instantly share code, notes, and snippets.

View milankubin's full-sized avatar

Milan Kubin milankubin

  • Amsterdam, Netherlands
View GitHub Profile
module StaticMapHelper
def static_map_for(location, options = {})
params = {
:center => [location.lat, location.lng].join(","),
:zoom => 15,
:size => "300x300",
:markers => [location.lat, location.lng].join(","),
:sensor => true
}.merge(options)