andre / geokit-gem
- Source
- Commits
- Network (51)
- Issues (5)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
Loading…
Labels
master
Official Geokit Gem. Geokit gem provides geocoding and distance/heading calculations. Pair with the geokit-rails plugin for full-fledged location-based app functionality. — Read more
Google appears to be returning 610 response codes. I think this is due to recent changes on their API: http://groups.google.com/group/google-maps-api/browse_thread/thread/e3ac0e9b487a432a?pli=1
ig
I had Geokit versions 1.5.0 and 1.4.1 on y Ubuntu but I had to remove version 1.5.0 because of compatibility issues on my project, but when I execute "sudo gem uninstall geokit" I receive:
rodrigo@ubuntu:~$ sudo gem uninstall geokit
ERROR: While executing gem ... (Gem::InstallError)
Unknown gem geokit >= 0
Thanks
Can you give us the output of 'sudo gem list --local|grep geokit'? It installs and uninstalls just fine for me.
Sorry for the inconvenient, the problem was I, I was trying to remove version 1.5.0 with that command ( sudo gem uninstall geokit) while I should use gem uninstall --install-dir=~/.gem/ruby/1.8/. After doing that I just installed Geokit again
through gem install geokit -v=1.4.1. Thanks @tisho for the support!
Hi,
I installed the geokit gem, but any rake command now gives me the following error: undefined method `timeout=' for Geokit::Geocoders:Module
Any idea what might be the problem?
update: I just see that the version bumped to 1.5.0 today, I also found the problem on the Google group. I do have to say that I'm testing with 1.5.0.
Kind regards,
Michael
ok, changing
Geokit::Geocoders::timeout = 3
to
Geokit::Geocoders::request_timeout = 3
in the config file
solved the problem. Thanks for the help.
I had the same problem and ended well with the same solution.
It may be great to update the README and the geokit-rails template
Thanks.

Did you grab a valid API key? http://groups.google.com/group/geokit/browse_thread/thread/fe8dae62f8c8ae9e
Sigh, I did.. But i had a typo. False alarm and thanks for the followup!