我使用的是Rails 4.2.0和Ruby 2.2.0。我想使用geokit将地址转换为纬度和经度。我已经在我的终端中安装了gem。我还在我的Gemfile中包含了gem"geokit",并运行捆绑包安装。
在控制器上,我尝试使用函数Geokit::Geocoders::GoogleGeocoder.geocode().
当我这样使用它时,我得到了这个错误:未初始化的常量AnswersController::Geocoders(我的控制器被称为Answers)
当我试图在控制器的开头添加require"geokit"时,我得到了错误:无法加载这样的文件--geokit。
你知道我能做些什么来解决这个问题吗?
提前感谢
这是我的控制器
require 'rubygems'
require 'geokit'
class AnswersController < ApplicationController
before_action :set_answer, only: [:show, :edit, :update, :destroy]
def render_page2
render('page2')
end
def answer_page2
if params[:address_origin] && params[:address_destination]
session[:lat_origin] = Geokit::Geocoders::GoogleGeocoder.geocode(params[:address_origin]).lat
session[:lon_origin] = Geokit::Geocoders::GoogleGeocoder.geocode(params[:address_origin]).lng
session[:lat_destination] = Geokit::Geocoders::GoogleGeocoder.geocode(params[:address_destination]).lat
session[:lon_destination] = Geokit::Geocoders::GoogleGeocoder.geocode(params[:address_destination]).lng
#session[:lat_origin] = 37.793688
#session[:lon_origin] = -122.3958692
#session[:lat_destination] = 37.866437
#session[:lon_destination] = -122.265415
redirect_to '/page3'
else
flash[:message] = "All the questions are required on this page."
redirect_to '/page2'
end
end
end
我已经在我的终端中安装了gem。我还包括宝石"geokit",然后运行捆绑包安装。
不需要两者兼而有之。
按照以下步骤确保已正确安装geokit
gem:
a。在Gemfile 中添加geokit
gem
# Gemfile
gem 'geokit'
b。运行bundle install
;验证gem是否安装了bundle show geokit
。
c。在rails控制台中尝试以下操作:
$ rails console
> a=Geokit::Geocoders::GoogleGeocoder.geocode '140 Market St, San Francisco, CA'
=> #<Geokit::GeoLoc:0x007fe877305c70 @all=[#<Geokit::GeoLoc:0x007fe877305c70 ...>], @street_address="140 Market Street", @sub_premise=nil, @street_number="140", @street_name="Market Street", @city="San Francisco", @state=nil, @state_code="CA", @state_name="California", @zip="94105", @country_code="US", @province="CA", @success=true, @precision="address", @full_address="140 Market Street, San Francisco, CA 94105, USA", @lat=37.793688, @lng=-122.3958692, @provider="google", @neighborhood="Financial District", @district="San Francisco County", @country="United States", @accuracy=8, @suggested_bounds=#<Geokit::Bounds:0x007fe8772fef60 @sw=#<Geokit::LatLng:0x007fe8772fef88 @lat=37.7923338697085, @lng=-122.3972116302915>, @ne=#<Geokit::LatLng:0x007fe8772ff050 @lat=37.7950318302915, @lng=-122.3945136697085>>>
> a.ll
=> "37.793688,-122.3958692"
我想我找到了解决方案。代码很好,普拉卡什发布的所有步骤都很好。
但我需要在你运行这些步骤后重新启动终端上的rails服务器,这就是为什么它在浏览器上不起作用!现在它正在发挥作用。
感谢大家的回答。我不知道这是否是最好的解决方案,但至少它有效。