demarches-normaliennes/app/lib/api_adresse/geocodeur.rb
2018-10-15 20:55:46 +02:00

11 lines
313 B
Ruby

module ApiAdresse
# this class take a string in input and return a point
class Geocodeur
def self.convert_adresse_to_point(address)
ApiAdresse::PointRetriever.new(address).point
rescue RestClient::Exception, JSON::ParserError => e
Rails.logger.error(e.message)
nil
end
end
end