You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chrome developers tools tell me 404 error, not found. Check models/address.rb MultiGeocoder appears to be using GoogleGeocoder but that has been deprecated. Changing this to GoogleGeocoder3 appears to fix it.
class Address
include Geokit::Geocoders
def self.geocode(address)
GoogleGeocoder3.geocode(address).ll.split(',').map{|s| s.to_f}
end
end
The text was updated successfully, but these errors were encountered:
Chrome developers tools tell me 404 error, not found. Check models/address.rb MultiGeocoder appears to be using GoogleGeocoder but that has been deprecated. Changing this to GoogleGeocoder3 appears to fix it.
class Address
include Geokit::Geocoders
def self.geocode(address)
GoogleGeocoder3.geocode(address).ll.split(',').map{|s| s.to_f}
end
end
The text was updated successfully, but these errors were encountered: