Geocoder is a complete geocoding solution for Ruby. With Rails it adds geocoding (by street or IP address), reverse geocoding (find street address based on given coordinates), and distance queries. It’s as simple as calling geocode on your objects, and then using a scope like Venue.near("Billings, ...
0
votes
0answers
6 views
How can I stub geocoder to stop throwing “Geocoding API's response was not valid JSON.” in all my specs?
I'm using the geocoding gem for rails, and right now to stub out Geocoder I'm trying:
Provider.any_instance.stub(:geocode).and_return([1, 1])
...
0
votes
1answer
20 views
Generic way to mock something in Ruby
How could I mock any method without using any gem?
Suppose I have access to an complex object like request
How could I make
request.location.country
to return a mocked value.
I read I can mock ...
0
votes
1answer
15 views
Rails Gem Geocoder Lookup method not obeying /config/initializers/geocoder.rb
I dont know exactly why but the gem is working properly except by the fact that it appears to not obbey the configuration file.
When I test its initialization with a 'puts' command it show in the ...
0
votes
2answers
24 views
Implement the gecoder gem in nested resource loop?
I implemented the geocoder gem based on the tutorial on http://railscasts.com/episodes/273-geocoder
This is a part of the house show view template
- @house.location.nearbys(20, {:order => ...
1
vote
0answers
28 views
How to store geocoder data in a separate table?
I have an app with Photos and Locations.
class Photo < ActiveRecord::Base
belongs_to :location
end
class Location < ActiveRecord::Base
has_many :photos
end
What i'm trying to do is to ...
1
vote
0answers
24 views
using rails geocoder when object has 2 sets of coordinates
Rails 3.1, Ruby 1.9.3
So I have two models, both have two sets of coordinates. The first model, Loads, has from_lat/lng, as well as to_lat/lng. The second model, Trucks, has current_lat/lng as well ...
0
votes
1answer
32 views
Geocoder + Rails 3.2 // SQLException: no such column: distance:
I keep getting the same error when I try to apply Geocoder gem to my search form. You will see 2 different queries in Event Controller. If I use them on their own they work great. But, I use them ...
0
votes
1answer
133 views
Validating longitude / latitude with geocoder gem
I followed this Geocoder Railscast & I'm playing around with it to see if I can add validation to the longitude & latitude coordinates returned by the Geocoder Gem incase the user inputs a ...
0
votes
0answers
91 views
Json, Rails Geocoder and Gmaps for Rails
With Ruby Geocoder I am able to convert address to latitude and longitude and then display it with google static map. However, when trying to use gmap for rails I am getting a blank container.
view ...
0
votes
1answer
54 views
Throttle Geocode requests with DelayedJob run_at
I'm trying to handle geocoding in my Rails app in a way that I can restrict the flow of geocode api calls with DelayedJob.
My intention is just to queue geocoding requests, as they're not time ...
1
vote
1answer
66 views
Can Ruby Geocoder return just the street name on reverse_geocode calls?
The geocoder gem will automatically reverse geocode on save if the line after_validation :reverse_geocode is included in the model. This results in a long string of text being saved as the address, ...
1
vote
1answer
45 views
Use Geocoder to calculate distance outside of rails
The geocoder gem allows easy calculation of distance between 2 coordinates within rails:
obj.distance_from([40.714,-100.234])
How can I achieve this in a ruby script outside of rails?
0
votes
1answer
43 views
Tabbed menus broke my geocoder search functionality
I'm fairly new to Ruby on Rails, making a directory type of website as a personal project to learn.
In my app, I implemented Geocoder search so the user can search for places/locations near them, the ...
0
votes
1answer
85 views
Ruby On Rails - Geocoder - Near with condition
I'm using GeoCoder in my application. Now I need to search for objects in my database which are close to a position OR have specific attribute set. I would like to perform this action in one database ...
0
votes
1answer
51 views
Geocoder force geocode on records in database with Rails console
I've had an address table in my database for some time now, and recently have come across the Geocoder gem (sweet gem). Anyway, I've edited my model to include both the latitude and longitude columns, ...
1
vote
1answer
132 views
How do I setup geocoder with google_premier?
I've read the docs for the geocoder gem which state you can set a key, client and channel when using Google Premier.
According to some other posts I've read here, it's now possible to use an API key ...
1
vote
1answer
44 views
country_code list for geocoder gem
I'm using geocoder to detect country user.
On my app I need detect country user. I make something like:
c = request.location.country_code
case c
when 'US'
I18n.locale = :en
when 'ES'
...
0
votes
1answer
72 views
Rails geocode two ways in model
I am using geocoder and have a model called Location. This models contains longitude, latitude, and address. What I would like is to give the option to the user to fill in either longitude and ...
0
votes
2answers
126 views
Can't use Geocoder class in my controller
I have such trouble: I want to use ajax request to get user location, so I created action in my controller and rendering the result of Geocoder function in json. Here is code:
def find_location
...
1
vote
0answers
71 views
Sort an ActiveRecord Relation using Geocoder in Rails
I am using the Geocoder gem with a model called Breve. Geocoder provides with a method near([latitude, longitude], radius) returning a Relation containing all the "breves" in the radius of the ...
0
votes
1answer
48 views
rails 3 multiform geocoder
Using railscast 217 (multistep/wizard) from and geocoder. What I want to do is have the user enter a meeting location on the first part of the form, then on the second part of the form have geocoder ...
1
vote
0answers
54 views
Was Geocoder successful?
Geokit has the helpful functionality:
g = Geokit::Geocoders::GoogleGeocoder.geocode [address_1, address_2, city, zip_code, state, country].compact.join(', ')
if g.success == true
...
Can the ...
1
vote
1answer
50 views
Using geocoder on a child association, how to find all parents in a given location?
class User < AR
has_many :locations
end
class Location < AR
belongs_to :user
geocoded_by :address
end
How do I write a query that does this?
@users = ...
2
votes
1answer
70 views
How do I order the results of rails geocoder gem by something other than distance
I have this excellent gem https://github.com/alexreisner/geocoder working fine in my app but I need to order the results of an active record query slightly differently.
For example using the rails ...
0
votes
1answer
88 views
Populate visitors IP address in the controller for Geocoder near() query
I want to grab the visitors IP address and use it in my controller so that I can use geocoder to find nearby objects.
So I have a Location model, and I want to run a query like this:
def index
...
0
votes
0answers
85 views
showing gps pins nearby around me in ruby on rails
I try This tutorial from Ryan Bates and i'd like to improve more about this tutorial . . If the nearby location has been input, it will show the link nearby. But i want the nearby location pointed by ...
1
vote
3answers
151 views
Ruby on Rails based website and app [closed]
I have started coding during my free time for over a year now. I had a social community idea which will be location based which basically deals with locations and nearby trending places.
I did some ...
0
votes
0answers
92 views
geocode:all rake task not working
I am using Mongoid and geocoder. I have an embedded document/model that I need to geocode and the rake task geocode:all is not working. The geocoding works if I save an individual object.
The ...
2
votes
0answers
156 views
geocoder: distance sortable index
I'm developing a rails app where Users are having many Items. The users are geocoded thanks to another model I called Place that is relying on the ruby geocoder gem.
class Place < ...
2
votes
2answers
271 views
Rails - Geocoder Gem : geocoded_by with 2 tables
I'm used to work with the geocoder gem the way I saw in http://railscasts.com/episodes/273-geocoder, but my model is becoming a bit more complex than the given example.
Now, I would like to use 2 ...
0
votes
0answers
118 views
In Rails on page load get user location and store
I'm looking to when I load a page in Rails 3 grab the users currently location using HTML5 Geolocation, and store the lat and long in the database. This is what I currently have. Any thoughts would be ...
1
vote
1answer
81 views
How do you get the postal_code using the Geocoder gem in Ruby on Rails?
I installed the GeoCoder gem for my Ruby on Rails project and am trying to get zip codes for the cities but the postal_code is always nil. All of the cities I've put in like San Jose, CA and Seattle, ...
3
votes
1answer
261 views
Rails Geocoder near method limiting results to 100
I'm working with Rails, Mongoid, and Geocoder. My issue is Location.near is limiting results returned to 100, even for results that should yield over 100. I need a way to return all the results for ...
0
votes
0answers
76 views
Why does Geocoder return incorrect data about my current location
I am using rails 3.2.8 and Geocoder gem.
In my controller i have:
@user_location = request.location.country
The response i get is "Tunisia", which is more than 5000 kilometers from where i am. ...
1
vote
1answer
115 views
Geocoder gem - Displaying nearby other models
Right to the question, i have two models, houses and shops, When i go into my view show, i would like to display not only all nearby houses, but also shops, i am not sure what to put in my controller ...
5
votes
1answer
507 views
Does Geocoder gem work with google API key?
I am using ruby geocoder gem for my project and as the project is growing I am starting to look into connecting to the Google API key. After adding this to the project:
Geocoder.configure do |config|
...
0
votes
2answers
448 views
Rails Geocoder says “can't convert string to integer”
Im my index index controller I have
@usergeo = Geocoder.search("83.215.14.101")
result is:
Geocoder::Result::Freegeoip:0x007ff3ced35eb8 @data={
"city"=>"Salzburg",
"region_code"=>"05",
...
0
votes
0answers
122 views
Can I use 'near' method in Geocoder to check two models?
I have 2 models: Business and Program.
class Business < ActiveRecord::Base
has_many :programs
class Program < ActiveRecord::Base
belongs_to :business
Businesses have many programs. Both ...
0
votes
0answers
120 views
No data returned from geocoder when querying ip address in development rails console
I am using Geocoder gem. In my rails development console when i search for my ip address, the returned data is not complete(no city is returned?):
Terminal Output
> ...
0
votes
1answer
169 views
Geocoder in Rails with MongoMapper
I have used geocoder in my ruby on rails application for a while but when I moved computer I can't get it working with the include statement in my model. I use a Mongo database and keep getting this ...
1
vote
1answer
311 views
Geocoder Gem: Unable to reverse geocode certain Google Map results
With the Geocoder gem, using the advanced geocoding section I can't seem to get it to work. I basically took every Address Component Type on the Google Maps Documentation and put it inside of the ...
0
votes
2answers
366 views
get city, country and ip from a visitor on production mode with rails 3.2
I have installed http://www.rubygeocoder.com/ in a project rails in a production server but this gem in my production server not works fine for me...
I'm using mongoid.
I write these methods in ...
1
vote
2answers
1k views
Ruby on Rails - Geocoder view
Im trying to use geocoder for displaying a location based on an address.
My question is, what do I put in the view to show an interactive map once I got the Lat and Long from the address the user ...
0
votes
1answer
152 views
Integrating Rails Geocoder with Devise
I have hit an interested Problem. I am using ruby 1.9.3 and rails 3.2.3
I am wanting to integrate the geocoder gem with devise. I have added three additional attr_accessible into my user model ...
1
vote
2answers
134 views
Ruby: how to do change object to something readable
I'm using the geocoder gem which has the ability to pick up IP address from an http request. from the documentation:
Geocoder adds a +location+ method to the standard ...
0
votes
1answer
517 views
associating Google Maps Business API key with geocoder searching?
I have a background rails job using geocoder for records that have a latitude and a longitude. I also have a license for the Google Maps API v3. This (obviously) won't be hitting the javascript API.
...
0
votes
0answers
158 views
Geocoder: undefined method `to_coordinates' for nil:NilClass
I have a controller below that uses geocoded data parsed from devise to show the logged in user other users that are geographically near him. Everytime I try to load the page I get an undefined method ...
1
vote
1answer
340 views
Can't do geo query on embedded document using Mongoid and Geocoder
(Ruby 1.9.3, MongoDB 2.0.4, Rails 3.2, Mongoid 2.4, Geocoder 1.1.1)
I have the following models:
class Company
include Mongoid::Document
embeds_one :office
index [[ "office.coordinates", ...
3
votes
3answers
855 views
Using the geocoder gem for rails, how do i get the visitor's city?
https://github.com/alexreisner/geocoder
I can't find documentation to show the visitor's city from ip address? I know how to with HTML5, but I would like to use the value geocoder has. Thanks
5
votes
3answers
150 views
In Rails, should I use the generators?
I've encountered information that implies most experienced Rails developers don't use scaffolding. Do most experienced Rails developers even use the generators for Models, Controllers, and Migrations?
...
