gmaps4rails 不显示地图
gmaps4rails are not displaying map
我安装了 gmaps4rails gem,但我不确定这里发生了什么,但我什至无法让演示代码运行。什么都没有加载。
我有一个 rails 5.0.1 ruby 2.3.3p222
我已经按照下面列出的 github 页面上的基本演示教程进行操作:https://github.com/apneadiving/Google-Maps-for-Rails
当我 运行 它时,控制台中没有错误。下面是代码。我不知道为什么这不起作用,它只是演示代码,我还没有尝试做任何棘手的事情。有谁知道或有人发生过这种情况吗?
我上传到github:https://github.com/trigun117/gmaps4rails
application.js
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require underscore
//= require gmaps/google
//= require_tree .
显示
<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(<%=raw @hash.to_json %>);
handler.bounds.extendWith(markers);
handler.fitMapToBounds();
});
</script>
您需要从 Google 获取 API 密钥才能使用 2016 年的地图。前往 here 注册您的应用程序并获取密钥。
我安装了 gmaps4rails gem,但我不确定这里发生了什么,但我什至无法让演示代码运行。什么都没有加载。
我有一个 rails 5.0.1 ruby 2.3.3p222
我已经按照下面列出的 github 页面上的基本演示教程进行操作:https://github.com/apneadiving/Google-Maps-for-Rails
当我 运行 它时,控制台中没有错误。下面是代码。我不知道为什么这不起作用,它只是演示代码,我还没有尝试做任何棘手的事情。有谁知道或有人发生过这种情况吗?
我上传到github:https://github.com/trigun117/gmaps4rails
application.js
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require underscore
//= require gmaps/google
//= require_tree .
显示
<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(<%=raw @hash.to_json %>);
handler.bounds.extendWith(markers);
handler.fitMapToBounds();
});
</script>
您需要从 Google 获取 API 密钥才能使用 2016 年的地图。前往 here 注册您的应用程序并获取密钥。