我正在使用ruby on rails应用程序。
我应该处理谷歌地图。为此,我使用了gmaps4rails gem.And我工作得很好。现在,当我们访问地图上的标记时,我已经开始显示工具提示了。我不想要显示信息窗口。为此我写了下面的代码来解决这个问题。
@locations = Location.all.to_gmaps4rails do |locations, marker|
marker.picture({
:picture => "http://www.google.com/intl/en_us/mapfiles/ms/micons/red-dot.png",
:width => 30,
:height => 50,
:tooltip => "this is a sample tooltip" #### this is for tooltip
})
end
但我无法看到工具提示。我需要在该工具提示上显示图像。我也使用了回调,但没有结果 有人可以帮助我吗?