class Geocoder::Result::Nominatim

def poi

def poi
  %w[building university school hospital mall hotel restaurant stadium bus_stop tram_stop].each do |key|
    return @data['address'][key] if @data['address'].key?(key)
  end
  return nil
end