我安裝了gmaps4rails gem,我不確定這裏發生了什麼,但我甚至無法獲得演示代碼的工作。什麼都沒有被加載。gmaps4rails不顯示地圖
我有一個軌道4.0.2紅寶石1.9.3應用程序。
我是按照GitHub的頁面上的基本演示下面列出的教程: https://github.com/apneadiving/Google-Maps-for-Rails
我不知道這是否是一個JS的問題 - 我也有: highcharts和皇家滑塊在那裏,可能會干擾。
我已經試過這是這裏推薦的「數據沒有的TurboLink」:https://github.com/apneadiving/Google-Maps-for-Rails/issues/357
有在控制檯中沒有錯誤,當我運行它。以下是代碼。我不知道爲什麼這不起作用,它只是演示代碼,我沒有試圖做任何棘手的事情。有沒有人有任何想法或有這發生在任何人?
顯示
<script src="//maps.google.com/maps/api/js?v=3.13&sensor=false&libraries=geometry" type="text/javascript"></script>
<script src='//google-maps-utility-library-v3.googlecode.com/svn/tags/markerclustererplus/2.0.14/src/markerclusterer_packed.js' type='text/javascript'></script>
<div style='width: 800px;'>
<div id="map" style='width: 800px; height: 400px;'></div>
</div>
<script type="text/javascript">
handler = Gmaps.build('Google');
handler.buildMap({ provider: {}, internal: {id: 'map'}}, function(){
markers = handler.addMarkers([
{
"lat": 0,
"lng": 0,
"picture": {
"url": "https://addons.cdn.mozilla.net/img/uploads/addon_icons/13/13028-64.png",
"width": 36,
"height": 36
},
"infowindow": "hello!"
}
]);
handler.bounds.extendWith(markers);
handler.fitMapToBounds();
});
</script>
的application.js
//= require underscore
//= requrie gmaps/google
對不起應該提到...我想所有這一切張貼問題之前。這真的很奇怪。 – 2014-10-30 04:02:58
有什麼想法如何解決這個問題? – 2014-10-31 14:14:36