1
Iam正在使用Rails應用程序,我希望從經緯度獲得時區。我在stackoverflow上搜索了這個,發現這個link是最好的方法。Rails使用時區從經緯度獲取時區
我安裝了寶石geokit和時區,並試圖實現同樣的在我的控制檯:
require 'geokit'
require 'timezone'
res = Geokit::Geocoders::GoogleGeocoder.geocode('140 Market St, San Francisco, CA')
timezone = Timezone::Zone.new(:latlon => res.ll)
,但我得到這個錯誤:
ArgumentError: wrong number of arguments (1 for 2)
我檢查Timezone的文檔。 他們要求通過註冊獲取用戶名。但我還沒有收到任何激活郵件。有人可以爲此提出一些解決方案。
在此先感謝。
請參閱[本社區wiki條目](http://stackoverflow.com/q/16086962/634824) –