以下是描述问题的图片:
所以我正在使用https://github.com/parolkar/cartographer(在此阶段仅作为插件提供),并且我正在获得如上所示的异常地图渲染。关于图标位置等,一切看起来都很好。但是当我点击它们时,我会得到时髦的信息框(包含正确的信息)。
以下是我用于生成地图和信息框的代码:
@map = Cartographer::Gmap.new( 'map')
@map.zoom = :bound
@icon = Cartographer::Gicon.new()
@map.icons << @icon
@count = 0
@numrecords.times do
markername = "marker#{@count}"
markername = Cartographer::Gmarker.new(:name=> "Business#{@count}", :marker_type => "Building",
:position => [@lat[@count], @long[@count]],
:info_window_url => "/bio/#{@branch_id[@count]}", :icon => @icon)
@map.markers << markername
@count += 1
end
来自控制器的:
def bio
@branch = Branch.find(params[:id])
render :layout => false
end
和生物视图文件
<%= link_to "#{@branch.name}", branch_path %><br />
<%= @branch.business.name %><br />
答案 0 :(得分:1)
看起来这是一个引导问题,而不是制图师问题。
https://github.com/twitter/bootstrap/issues/1552
注意:万一有人读到这个,我会建议gmaps4rails而不是制图师,因为这是一个有支持的新宝石。