我正在尝试这个示例: 链接通过单击 ajax 按钮初始化 second 地图,但地图未初始化。我正在研究最新版本的 gmaps4rails。我的来源:
= gmaps("map_options" => { "detect_location" => true, "center_on_user" => true, "auto_adjust" => true, "zoom" => 12, "auto_zoom" => false })
%button#ajax_map Ajax Map
#map_container
#map2
js:
$(function() {
$('#ajax_map').click(function(){
$('#map_container').addClass('map_container');
$('#map2').addClass('gmaps4rails_map');
Gmaps.map2.map_options.detect_location = true;
Gmaps.map2.map_options.center_on_user = true;
Gmaps.map2.initialize();
});
});
CSS:
.map_container {
width: 600px;
}
#map {
width: 600px;
height: 400px;
}
#map2 {
width: 600px;
height: 400px;
}
我究竟做错了什么?