将 Rails 3 与 Geokit-rails3 位置 gem 结合使用

发布于 2024-10-21 06:41:56 字数 414 浏览 2 评论 0原文

我正在尝试在 Rails 应用程序中使用 geokit-rails3 gem 获取地理位置信息。我有一个简单的模型:

class Location < ActiveRecord::Base
  def lookup_ip_information(post_ip)
    ip = post_ip
    location = IpGeocoder.geocode(ip)
    puts location.full_address
    lat = location.lat
    lng = location.lng
  end
end

当我从控制器中使用 request.remote_ip 调用此方法时,它会抛出错误:未初始化的常量 Location::IpGeocoder

I am trying to use the geokit-rails3 gem for geolocation information in a rails application. I have a simple model:

class Location < ActiveRecord::Base
  def lookup_ip_information(post_ip)
    ip = post_ip
    location = IpGeocoder.geocode(ip)
    puts location.full_address
    lat = location.lat
    lng = location.lng
  end
end

When I call this method with request.remote_ip from my controller, it's throwing an error: uninitialized constant Location::IpGeocoder

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

云之铃。 2024-10-28 06:41:56

我刚刚遇到了这个问题,并通过输入完整内容解决了它

Geokit::Geocoders::IpGeocoder.geocode(request.remote_ip)

,这似乎为我解决了这个问题。

I just had this issue and resolved it by entering the full

Geokit::Geocoders::IpGeocoder.geocode(request.remote_ip)

and that seemed to solve it for me.

柠檬 2024-10-28 06:41:56

有同样的问题,并且无法使用上述建议让 IpGeocoder 在 Rails3 中工作。深入研究 gem 的 Rails3 源代码。看起来解决这个问题的一个简单方法是使用 Rails 3 的 Geokit MultiGeocoder 方法。

示例:
loc = Geokit::Geocoders::MultiGeocoder.geocode(remote.request_ip)

不要忘记在初始化程序中正确设置 MultiGeocoder - geokit_config.rb
Geokit::Geocoders::provider_order = [:google,:us]

Had the same issue and couldn't get IpGeocoder to work in Rails3 with above suggestions. Dug into the Rails3 source code for the gem. Looks like an easy way to work around this is use the Geokit MultiGeocoder method for Rails 3.

Example:
loc = Geokit::Geocoders::MultiGeocoder.geocode(remote.request_ip)

Don't forget to set up MultiGeocoder correctly in your initializer - geokit_config.rb
Geokit::Geocoders::provider_order = [:google,:us]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文