gmaps4rails 将图像添加到信息窗口

发布于 2024-11-10 16:02:50 字数 369 浏览 0 评论 0原文

我很喜欢使用 gmaps_4_rails gem,并且对其配置的简便性印象深刻。我遇到的唯一问题是如何将图像添加到信息窗口,并且我花了很多时间试图让它工作。我无法举个例子:

def gmaps4rails_infowindow
  "<img src=\"#{self.picture}\"> #{self.name}"
end

工作。我希望能够在 infowindow /public/images/#{name}.jpg width= 25 height = 32 中执行类似的操作。

我最终想将图像存储在 amazon s3 上,但一直在我本地的 macbook 上工作让流程正常运行。

任何帮助将不胜感激

I have enjoyed using you gmaps_4_rails gem and am impressed with the ease of configuring it. The only problem that I have had and I have spent a great deal of time trying to get it working is how to add an image to an infowindow. I cant get the example:

def gmaps4rails_infowindow
  "<img src=\"#{self.picture}\"> #{self.name}"
end

to work. I want to be able to do something like this in the infowindow /public/images/#{name}.jpg width= 25 height = 32.

I eventually want to store the images on amazon s3 but have been working on my local macbook to get the process working.

Any assistance would be greatly appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥抱没勇气 2024-11-17 16:02:50

只需执行以下操作:

def gmaps4rails_infowindow
  "<img src='/images/#{name}.jpg' width='25' height='32'> #{name}"
end

看看这里以确定您所做的事情:
https://github.com/apneadiving/Google-Maps-for -Rails/wiki/安全警告

Simply do this:

def gmaps4rails_infowindow
  "<img src='/images/#{name}.jpg' width='25' height='32'> #{name}"
end

Have a look here to be sure of what you do:
https://github.com/apneadiving/Google-Maps-for-Rails/wiki/Security-Warning

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文