suggested_bounds
GeoKit を使用して住所からを取得しようとしています。このソリューションは機能しましたが、突然失敗し始めました。
Geokit::Geocoders::GoogleGeocoder.geocode(location).suggested_bounds
それは を返しますnil
。なしで試すとsuggested_bounds
、次のように返されます。
Street:
City:
State:
Zip:
Latitude:
Longitude:
Country:
Success: false
これは何ヶ月も機能しており、Google API キーを更新しようとしましたがうまくいきませんでした。
それが役立つ場合は、次のように、実際のアドレスではなく IP アドレスで MultiGeocoder を使用できます。
Geokit::Geocoders::MultiGeocoder.geocode(ip_address)
ありがとうございます。