Module: GoogleMapsRails::ViewHelpers

Defined in:
lib/google_maps_rails/view_helpers.rb

Instance Method Summary collapse

Instance Method Details

#embed_google_maps(lat, long, width = 500, height = 500) ⇒ Object



3
4
5
6
7
8
9
# File 'lib/google_maps_rails/view_helpers.rb', line 3

def embed_google_maps(lat, long, width = 500, height = 500)
  if lat != '' && long != ''
    "<iframe src = 'https://maps.google.com/maps?q=#{lat},#{long}&hl=es;z=14&amp;output=embed' frameborder='0' style='border:0' width='#{width}' height='#{height}' allowfullscreen></iframe>"
  else
    "latitude or longitude not found"
  end
end