多年来,我一直试图弄清楚如何将gmaps4rails集成到rails应用程序中。
我制作了一个全新的应用程序,并尝试了全新的应用程序。
我不知道出了什么问题。我正在寻找完整和最新的安装说明。许多文章提到了旧版本的依赖关系,最后说这个问题在以后的版本中得到了解决。
目前,我认为:
<script src="//maps.google.com/maps/api/js?v=3.23&key=<%= ENV['GOOGLE_MAPS_API_KEY'] %>"></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(<%=raw @hash.to_json %>);
handler.bounds.extendWith(markers);
handler.fitMapToBounds();
});
</script>
在我的application.js,我有:
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require bootstrap-sprockets
//= require moment
//= require bootstrap-datetimepicker
//= require pickers
//= require underscore
//= require gmaps/google
//= require markerclusterer
//= require_tree .
我已将下划线.js的生产版本保存在我的vendor/assets/javascripts文件夹中。我还将markerclusterer.js保存为同一文件夹中的文件。
在我的gem文件中,我有:
gem 'geocoder'
gem 'gmaps4rails', '~> 2.1', '>= 2.1.2'
gem 'countries'
gem 'country_select'
在我的控制器中,我有:
class AddressesController < ApplicationController
def index
end
def show
@hash = Gmaps4rails.build_markers(@address) do |address, marker|
marker.lat address.latitude
marker.lng address.longitude
end
end
def new
@address = Address.new
end
def create
@address = Address.new(address_params)
# authorize @address
respond_to do |format|
if @address.save
format.html { redirect_to @address, notice: 'Address was successfully created.' }
format.json { render :show, status: :created, location: @address }
else
format.html { render :new }
format.json { render json: @address.errors, status: :unprocessable_entity }
end
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_address
@address = Address.find(params[:id])
# authorize @address
end
# Never trust parameters from the scary internet, only allow the white list through.
def address_params
params[:address].permit(:unit, :building, :street_number, :street, :city, :region, :zip, :country, :time_zone, :latitude, :longitude)
end
def user_time_zone(&block)
Time.use_zone(current_user.time_zone, &block)
end
end
当我试图用地图渲染视图时,铬检测仪显示错误如下:
v3.googlecode.com/svn/tags/markerclustererplus/2.0.14/src/markerclusterer_packed.js加载资源失败:服务器响应状态为404(未找到)铬-extension://mkjojgglmmcghgaiknnpgjgldgaocjfd/content/contentScripts/kwift.CHROME.min.js:1271 未捕获的语法错误:标识符“findGoodContent”已声明为util.js:221谷歌地图API警告:Noapikeshttps://developers.google.com/maps/documentation/javascript/error-messages#no-api keys util.js:221谷歌地图api警告:退休版本https://developers.google.com/maps/documentation/javascript/error-messages#retired-version util.js:221谷歌地图API警告:InvalidKeyhttps://developers.google.com/maps/documentation/javascript/error-messages#invalid-钥匙
我不理解这些错误中的任何一个,也找不到如何设置这个gem以在rails中使用它的说明。我可以看到,它已经被下载了很多-人们一定知道如何设置它。为了弄明白这一点,我简直要发疯了。
重新生成API密钥后
我试图在谷歌控制台上重新生成我的浏览器API密钥。
现在,当我尝试呈现页面时,会出现以下控制台错误:
primitives.self-5b8a3a6….js?body=1:5 Uncaught ReferenceError: google is not defined(…)Gmaps.Google.Primitives @ primitives.self-5b8a3a6….js?body=1:5Gmaps.Objects.Handler.Handler.setPrimitives @ handler.self-2f220ca….js?body=1:122Handler @ handler.self-2f220ca….js?body=1:8build @ base.self-8dd1d1a….js?body=1:9(anonymous function) @ VM2063:2t.SnapshotRenderer.n.assignNewBody @ turbolinks.self-c5acd7a….js?body=1:6t.SnapshotRenderer.n.replaceBody @ turbolinks.self-c5acd7a….js?body=1:6(anonymous function) @ turbolinks.self-c5acd7a….js?body=1:6t.Renderer.t.renderView @ turbolinks.self-c5acd7a….js?body=1:6t.SnapshotRenderer.n.render @ turbolinks.self-c5acd7a….js?body=1:6t.Renderer.t.render @ turbolinks.self-c5acd7a….js?body=1:6t.View.e.renderSnapshot @ turbolinks.self-c5acd7a….js?body=1:6t.View.e.render @ turbolinks.self-c5acd7a….js?body=1:6t.Controller.r.render @ turbolinks.self-c5acd7a….js?body=1:6(anonymous function) @ turbolinks.self-c5acd7a….js?body=1:6(anonymous function) @ turbolinks.self-c5acd7a….js?body=1:6
turbolinks.self-c5acd7a….js?body=1:6 GET http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerclustererplus/2.0.14/src/markerclusterer_packed.js t.SnapshotRenderer.n.assignNewBody @ turbolinks.self-c5acd7a….js?body=1:6t.SnapshotRenderer.n.replaceBody @ turbolinks.self-c5acd7a….js?body=1:6(anonymous function) @ turbolinks.self-c5acd7a….js?body=1:6t.Renderer.t.renderView @ turbolinks.self-c5acd7a….js?body=1:6t.SnapshotRenderer.n.render @ turbolinks.self-c5acd7a….js?body=1:6t.Renderer.t.render @ turbolinks.self-c5acd7a….js?body=1:6t.View.e.renderSnapshot @ turbolinks.self-c5acd7a….js?body=1:6t.View.e.render @ turbolinks.self-c5acd7a….js?body=1:6t.Controller.r.render @ turbolinks.self-c5acd7a….js?body=1:6(anonymous function) @ turbolinks.self-c5acd7a….js?body=1:6(anonymous function) @ turbolinks.self-c5acd7a….js?body=1:6
turbolinks.self-c5acd7a….js?body=1:6 GET http://localhost:3000/users/assets/images/grayscale.svg t.SnapshotRenderer.n.assignNewBody @ turbolinks.self-c5acd7a….js?body=1:6t.SnapshotRenderer.n.replaceBody @ turbolinks.self-c5acd7a….js?body=1:6(anonymous function) @ turbolinks.self-c5acd7a….js?body=1:6t.Renderer.t.renderView @ turbolinks.self-c5acd7a….js?body=1:6t.SnapshotRenderer.n.render @ turbolinks.self-c5acd7a….js?body=1:6t.Renderer.t.render @ turbolinks.self-c5acd7a….js?body=1:6t.View.e.renderSnapshot @ turbolinks.self-c5acd7a….js?body=1:6t.View.e.render @ turbolinks.self-c5acd7a….js?body=1:6t.Controller.r.render @ turbolinks.self-c5acd7a….js?body=1:6(anonymous function) @ turbolinks.self-c5acd7a….js?body=1:6(anonymous function) @ turbolinks.self-c5acd7a….js?body=1:6
util.js:221 Google Maps API warning: NoApiKeys https://developers.google.com/maps/documentation/javascript/error-messages#no-api-keysuD.S @ util.js:221(anonymous function) @ js?v=3.23&key=:127(anonymous function) @ js?v=3.23&key=:47(anonymous function) @ js?v=3.23&key=:44(anonymous function) @ js?v=3.23&key=:47(anonymous function) @ js?v=3.23&key=:97(anonymous function) @ js?v=3.23&key=:44(anonymous function) @ js?v=3.23&key=:97(anonymous function) @ js?v=3.23&key=:44(anonymous function) @ js?v=3.23&key=:97(anonymous function) @ js?v=3.23&key=:44(anonymous function) @ js?v=3.23&key=:97jc @ js?v=3.23&key=:46gc.Qc @ js?v=3.23&key=:97(anonymous function) @ common.js:1
util.js:221 Google Maps API warning: RetiredVersion https://developers.google.com/maps/documentation/javascript/error-messages#retired-versionuD.S @ util.js:221(anonymous function) @ js?v=3.23&key=:127(anonymous function) @ js?v=3.23&key=:47(anonymous function) @ js?v=3.23&key=:44(anonymous function) @ js?v=3.23&key=:47(anonymous function) @ js?v=3.23&key=:97(anonymous function) @ js?v=3.23&key=:44(anonymous function) @ js?v=3.23&key=:97(anonymous function) @ js?v=3.23&key=:44(anonymous function) @ js?v=3.23&key=:97(anonymous function) @ js?v=3.23&key=:44(anonymous function) @ js?v=3.23&key=:97jc @ js?v=3.23&key=:46gc.Qc @ js?v=3.23&key=:97(anonymous function) @ common.js:1
util.js:221 Google Maps API warning: InvalidKey https://developers.google.com/maps/documentation/javascript/error-messages#invalid-keyuD.S @ util.js:221(anonymous function) @ js?v=3.23&key=:127(anonymous function) @ js?v=3.23&key=:47(anonymous function) @ js?v=3.23&key=:44(anonymous function) @ js?v=3.23&key=:47(anonymous function) @ js?v=3.23&key=:97(anonymous function) @ js?v=3.23&key=:44(anonymous function) @ js?v=3.23&key=:97(anonymous function) @ js?v=3.23&key=:44(anonymous function) @ js?v=3.23&key=:97(anonymous function) @ js?v=3.23&key=:44(anonymous function) @ js?v=3.23&key=:97jc @ js?v=3.23&key=:46gc.Qc @ js?v=3.23&key=:97(anonymous function) @ common.js:1
当我在终端查看rails s时,我也可以看到:
ActionController::RoutingError (No route matches [GET] "/assets/underscore-min.map"):
Parameters: {"id"=>"4"}
ActionController::RoutingError (No route matches [GET] "/users/assets/images/grayscale.svg"):
关于下划线路由错误,终端中的行指资产/下划线。我的文件结构是供应商/资产/javascript,然后文件保存为underscore.js(min.map)。
又一次尝试
我尝试用v3.24替换JSV3.23,这样就消除了上面的警告消息。但是,我仍然无法获得映射来渲染地址。当我检查chrome控制台检查器时,我可以看到地址在javascript中得到确认,但纬度和经度细节没有:
handler = Gmaps.build('Google');
handler.buildMap({ provider: {}, internal: {id: 'map'}}, function(){
markers = handler.addMarkers([{"lat":null,"lng":null,"infowindow":"Unit 1\u003cbr\u003e34 Darling Street\u003cbr\u003eBuilding D\u003cbr\u003eBalmain East NSW 2041\u003cbr\u003eAustralia"}]);
handler.bounds.extendWith(markers);
handler.fitMapToBounds();
});
我现在想知道这个问题是否与模型关联有关。
我有一个地址模型和一个组织模型。这些协会是:
地址:
belongs_to :addressable, :polymorphic => true, optional: true
组织:
has_many :addresses, as: :addressable
accepts_nested_attributes_for :addresses, reject_if: :all_blank, allow_destroy: true
在我的地址控制器显示操作中,我有:
def show
@hash = Gmaps4rails.build_markers(@address) do |address, marker|
marker.lat user.latitude
marker.lng user.longitude
# marker.title user.title
end
end
在我的组织控制员表演中,我有:
def show
@addresses = @organisation.addresses
@hash = Gmaps4rails.build_markers(@addresses) do |address, marker|
marker.lat address.latitude
marker.lng address.longitude
marker.infowindow address.full_address
end
end
其中包含地图的部分以视图/地址/map.html.erb
当我尝试使用这些更改再次呈现页面时,会出现很多错误,这些错误都表示:
js?v=3.24&key=AIzaSyAleQgfNH3HRQVUCYnyAzp46xmXW7WrWrc:37 Uncaught RangeError: Maximum call stack size exceeded
我读过其他一些SO帖子,其中有人犯了这个错误,这些笔记接着讨论了“递归循环”。我似乎没有任何代码类似于这些错误中显示的代码,因此我不确定如何处理这些消息。
我想知道我是否需要更改组织控制器操作,以某种方式引用组织地址,而不是一般的地址(尽管如果是这样,那么我不明白控制台检查器如何显示js中从局部地图识别的正确地址)。
有人可以帮助一个详细的一步一步的教程,我可以用它来试图解决这个问题吗?
其他有类似问题的
我可以从其他SO帖子中看到,其他人也有类似的问题。建议是这样的:是否超过了Gmaps4rails的最大调用堆栈大小?
我想我已经做到了——我在每个地址控制员和组织控制员中的表演动作都是指lat/lng,而不是完整的单词(在db中使用)。
Eric的建议
根据Eric的建议,我从gem文件中删除了gmaps4rails gem,并从application.js中删除了require/gmaps行
我将组织控制员的表演动作更改为:
def show
@addresses = @organisation.addresses.all
# @hash = Gmaps4rails.build_markers(@addresses) do |address, marker|
# marker.lat address.latitude
# marker.lng address.longitude
# marker.infowindow address.full_address
# end
end
此步骤与Eric关于标记器控制器的索引操作的建议相同。我有一个地址控制器,它有一个类似于Eric的索引操作。在my db中,地址是多态的,属于组织。我试图在组织展示页面上呈现地图,因此我认为这一步与Eric的建议一致。
接下来,我用以下内容更新了我的地址/_map.html.erb:
<h3>My Google Maps Demo</h3>
<div id="map"></div>
<%= javascript_tag do %>
var addresses = <%= raw @addresses.to_json %>;
<% end %>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=<%= ENV['GOOGLE_MAPS_API_KEY'] %>&callback=initMap">
</script>
我在app/javascripts文件夹中为addresses.js创建了一个新文件,其中包含:
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 4
});
var bounds = new google.maps.LatLngBounds();
var n = addresses.length;
for (var i = 0; i < n; i++) {
var address = new google.maps.Address({
position: {lat: parseFloat(addresses[i].latitude), lng: parseFloat(addresses[i].longitude)},
title: addresses[i].name,
map: map
});
bounds.extend(address.position);
}
map.fitBounds(bounds);
}
当我保存所有这些并尝试它时,屏幕上会出现一个空的灰色框。
当我使用chrome inspector时,我可以看到:
//<![CDATA[
var addresses = [{"id":5,"unit":"1","building":"d","street_number":"34","street":"darling street","city":"Balmain East","region":"NSW","zip":"2041","country":"AU","time_zone":"International Date Line West","addressable_id":1,"addressable_type":"Organisation","description":"main_address","created_at":"2016-10-27T19:17:27.919Z","updated_at":"2016-11-08T22:48:16.978Z","latitude":"-33.85751","longitude":"151.193546"}];
//]]>
上面是数据库中的地址。但它不是在绘制地图。
有人能看到我需要做什么来获得带有地址的地图吗?
当我看到CHROME控制台检查器时
我可以在控制台检查器中看到几个新的错误。
他们是:
addresses.self-176b72f….js?body=1:9 Uncaught TypeError: google.maps.Address is not a constructor
这篇文章也有类似的问题。公认的解决方案是添加回调。我不知道该怎么做,也不知道该在哪里做。
Google Maps API v3-TypeError:表达式“Google.Maps.LatLng”[undefined]的结果不是构造函数
希望您已对其进行了排序,但您的JS似乎与api密钥不符。您是否遇到OOPS错误?您需要使用更新版本,其中包含“v=3”。
<script src="//maps.google.com/maps/api/js?v3key=[API_KEY]"></script>
这是我能用谷歌地图运行的最小的Rails应用程序。
Ruby 2.3.1,Rails 5.0.0.1,不需要额外的宝石。
rails new gmaps
取消评论
gem 'therubyracer', platforms: :ruby
在gefile
bundle install
rails generate resource marker name:string latitude:decimal longitude:decimal
rake db:migrate
app/controllers/markers_controller.rb:
class MarkersController < ApplicationController
def index
@markers = Marker.all
end
end
app/views/markers/index.html.erb:
<h3>My Google Maps Demo</h3>
<div id="map"></div>
<%= javascript_tag do %>
var markers = <%= raw @markers.to_json %>;
<% end %>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=<%= ENV['GOOGLE_MAPS_API_KEY'] %>&callback=initMap">
</script>
app/assets/stylesheets/markers.scss:
#map {
height: 400px;
width: 100%;
}
app/assets/javascripts/markers.js:
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 4
});
var bounds = new google.maps.LatLngBounds();
var n = markers.length;
for (var i = 0; i < n; i++) {
var marker = new google.maps.Marker({
position: {lat: parseFloat(markers[i].latitude), lng: parseFloat(markers[i].longitude)},
title: markers[i].name,
map: map
});
bounds.extend(marker.position);
}
map.fitBounds(bounds);
}
在rails c中添加一些标记:
Marker.create(:name => 'Sydney', :latitude => -33.87, :longitude => 151.17)
Marker.create(:name => 'Uluru', :latitude => -25.363, :longitude => 131.044)
将API密钥添加到bash中的环境:
export GOOGLE_MAPS_API_KEY="AIza.............................."
rails s
完成!
我使用了这个答案和这个Gmaps文档。
您可能应该检查是否有恶意代码被传输到javascript,例如通过标记#name。
首先,尝试摆脱“noapikey”、“InvalidKey”错误。您是否生成了与本说明中所述相同的密钥?您确定已将生成的密钥放入ENV['GOOGLE\u MAPS\u API\u key']中吗?
我将Rails5与PostgreSQL一起部署,以便在Heroku中免费应用程序。这是我在中的配置:
我有cucumber(使用capybara)场景,它们使用gmaps4rails gem,因此一些步骤在测试执行期间调用GMAP外部API。我想切断这些电话。实现这一目标的最佳方法是什么?提前感谢!
我试图将我的应用程序安装到Android L Preview Intel Atom虚拟设备中,它失败了,错误: install_failed_no_matching_abis
在你开始使用 Django 之前,你需要先安装它。我们有一个 完整安装指南 它涵盖了所有的安装步骤和可能遇到的问题;本指南将会给你一个最简单、简洁的安装指引。 安装 Python 作为一个 Web 框架,Django 需要使用 Python 。它适用 2.6.5 到 2.7 的所有 Python 版本。它还具有 3.2 和 3.3 版本的实验性支持。所有这些 Python 版本都包含一个轻量级的数
首先要安装 Node.js, Node.js 自带了软件包管理器 npm,Webpack 需要 Node.js v0.6 以上支持,建议使用最新版 Node.js。 用 npm 安装 Webpack: $ npm install webpack -g 此时 Webpack 已经安装到了全局环境下,可以通过命令行 webpack -h 试试。 通常我们会将 Webpack 安装到项目的依赖中,这样就
tags: 安装, 软件源 Linux Mint 18 的安装比较简单,安装速度也非常快。 但是期间还是有一些事情要小心。 安装前准备 从 Linux Mint 的下载页面下载 Cinnamon 的 64位版本。 https://www.linuxmint.com/download.php 之后使用各种工具将下载下来的 ISO 文件制作成启动 U 盘进行安装。 安装 安装时,在选择安装盘符时需要注