我有一个非常小的问题,这是该网站的一个巨大功能。 简单概述我在开发模式下开发了rails应用程序,并使用了gmaps4rails应用程序,该应用程序运行良好。但是我将应用程序部署到了Heroku,现在gmaps4rails没有显示侧边栏。
下面是它应该如何显示的图像: image 因此,当用户点击任何侧边栏条目时,它会将用户带到地图上的正确标记。
下面是如何在生产/ Heroku中呈现它的图像 image 如您所见,没有侧边栏条目。
在查看呈现的源代码时,存在一个区别。
在开发模式中,这行代码存在Gmaps.map.markers_conf.list_container = "ranchlist";
此代码是获取列表并显示它的代码。
以下是视图本身的代码:
<div id="mapscontainer">
<%= gmaps("markers" => {"data" => @json, "options" => {"list_container" => "ranchlist"}},
:map_options => {"auto_adjust" => true, "zoom" => 17,
:raw => '{
panControl: true,
zoomControl: true,
mapTypeControl: false,
scaleControl: false,
streetViewControl: false,
overviewMapControl: false,
scrollwheel: false,
zoom: 20,
}'
},
:markers => { :data => @json }
)%>
<div id="ranchcontainer">
<ul id="ranchlist"><h2>Find A Mash's Wing Ranch <span style="font-size:25px;"><sup>®</sup></span></h2>
<h1>Near You</h1></br>
<%= image_tag("locations/locations_line.png", :class => "lineseperator") %>
</ul>
</div>
</div>