Reputation: 101
I am used geocoder gem
How can i put iframe insted of image_tag ?
<%= image_tag "http://maps.google.com/maps/api/staticmap?size=450x300&sensor=false&zoom=16&markers=#{@presale.latitude}%2C#{@presale.longitude}", width: "300", height:"200" %>
I want the same code but with iframe please help me
Upvotes: 0
Views: 2671
Reputation: 2296
try this one
<%= content_tag(:iframe,'', width: 300, height: 200, src: "http://maps.google.com/maps/api/staticmap?size=450x300&sensor=false&zoom=16&markers=#{@presale.latitude}%2C#{@presale.longitude}") %>
Upvotes: 1