我目前正在使用 Rails 3.0.9 和 gmaps4rails 0.8.6。
我在为谷歌地图启用 https 时遇到问题。
我尝试使用该解决方案:
将 gmaps4rails 与 https/SSL 一起使用
但没有成功。
在布局应用程序中,我添加了这个 js include 标签:
<%= javascript_include_tag "https://maps.google.com/maps/api/js?sensor=false&libraries=geometry" %>
<%= javascript_include_tag "https://google-maps-utility-library-v3.googlecode.com/svn/tags/infobox/1.1.5/src/infobox.js" %>
<%= javascript_include_tag "gmaps4rails.js" %>
<%= javascript_include_tag "https://google-maps-utility-library-v3.googlecode.com/svn/tags/markerclusterer/1.0/src/markerclusterer_compiled.js" %>
我的控制器代码
...
@places = Place.paginate(:page => params[:page], :per_page => 10)
@json = @places.to_gmaps4rails
看法
...
<div id="mapLocal"> <%= gmaps4rails(@json, true false) %> </div>
...
之后,谷歌地图仍然可以使用 http。
页面源代码
function gmaps4rails_loadScript() {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "http://maps.google.com/maps/api/js?sensor=false&libraries=geometry&callback=gmaps4rails_init";
document.body.appendChild(script);
}
我试图将 gmaps4rails 更改为 gmaps。
结果:
Completed 500 Internal Server Error in 54ms
ActionView::Template::Error (undefined method `to_gmaps4rails' for #<String:0xf5d98528>):
13: <script type="text/javascript" charset="utf-8">
14: function gmaps4rails_init() {
15: <% #true is passed here to trigger map initialization %>
16: <%=raw options.to_gmaps4rails(true) %>
17: }
18:
19: function gmaps4rails_loadScript() {
app/views/places/index.html.erb:4:in `_app_views_places_index_html_erb___671263203__86055108_0'
所以我决定升级gem(也许旧版本不支持ssl?)。
从 0.8.6 升级到 1.1.4 后,我的基本未更改代码甚至都没有生成地图
<div id="mapLocal"> <%= gmaps4rails(@json) %> </div>
我用firebug检查了js日志并返回
Gmaps4RailsGoogle is not defined
Gmaps.map = new Gmaps4RailsGoogle();