nour
nour

Reputation: 101

Iframe with ruby in rails

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

Answers (1)

rob
rob

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

Related Questions