+ description = named.elements["description"].to_s
+
+ if name.empty?
+ prefix = ""
+ name = type
+ else
+ prefix = t "geocoder.search_osm_namefinder.prefix", :type => type
+ end
+
+ if place
+ distance = format_distance(place.attributes["approxdistance"].to_i)
+ direction = format_direction(place.attributes["direction"].to_i)
+ placename = format_name(place.attributes["name"].to_s)
+ suffix = t "geocoder.search_osm_namefinder.suffix_place", :distance => distance, :direction => direction, :placename => placename
+
+ if place.attributes["rank"].to_i <= 30
+ parent = nil
+ parentrank = 0
+ parentscore = 0
+
+ place.elements.each("nearestplaces/named") do |nearest|
+ nearestrank = nearest.attributes["rank"].to_i
+ nearestscore = nearestrank / nearest.attributes["distance"].to_f
+
+ if nearestrank > 30 and
+ ( nearestscore > parentscore or
+ ( nearestscore == parentscore and nearestrank > parentrank ) )
+ parent = nearest
+ parentrank = nearestrank
+ parentscore = nearestscore
+ end
+ end
+
+ if parent
+ parentname = format_name(parent.attributes["name"].to_s)
+
+ if place.attributes["info"].to_s == "suburb"
+ suffix = t "geocoder.search_osm_namefinder.suffix_suburb", :suffix => suffix, :parentname => parentname
+ else
+ parentdistance = format_distance(parent.attributes["approxdistance"].to_i)
+ parentdirection = format_direction(parent.attributes["direction"].to_i)
+ suffix = t "geocoder.search_osm_namefinder.suffix_parent", :suffix => suffix, :parentdistance => parentdistance, :parentdirection => parentdirection, :parentname => parentname
+ end
+ end
+ end
+ else
+ suffix = ""
+ end
+
+ @results.push({:lat => lat, :lon => lon, :zoom => zoom,
+ :prefix => prefix, :name => name, :suffix => suffix,
+ :description => description})
+ end
+
+ render :action => "results"
+ rescue Exception => ex
+ @error = "Error contacting gazetteer.openstreetmap.org: #{ex.to_s}"
+ render :action => "error"
+ end
+
+ def search_osm_nominatim
+ # get query parameters
+ query = params[:query]
+ minlon = params[:minlon]
+ minlat = params[:minlat]
+ maxlon = params[:maxlon]
+ maxlat = params[:maxlat]
+
+ # get view box
+ if minlon && minlat && maxlon && maxlat
+ viewbox = "&viewbox=#{minlon},#{maxlat},#{maxlon},#{minlat}"
+ end
+
+ # get objects to excude
+ if params[:exclude]
+ exclude = "&exclude_place_ids=#{params[:exclude].join(',')}"
+ end
+
+ # ask nominatim
+ response = fetch_xml("http://nominatim.openstreetmap.org/search?format=xml&q=#{escape_query(query)}#{viewbox}#{exclude}&accept-language=#{request.user_preferred_languages.join(',')}")
+
+ # create result array
+ @results = Array.new
+
+ # create parameter hash for "more results" link
+ @more_params = params.reverse_merge({ :exclude => [] })
+
+ # extract the results from the response
+ results = response.elements["searchresults"]
+
+ # parse the response
+ results.elements.each("place") do |place|
+ lat = place.attributes["lat"].to_s
+ lon = place.attributes["lon"].to_s
+ klass = place.attributes["class"].to_s
+ type = place.attributes["type"].to_s
+ name = place.attributes["display_name"].to_s
+ min_lat,max_lat,min_lon,max_lon = place.attributes["boundingbox"].to_s.split(",")
+ prefix_name = t "geocoder.search_osm_nominatim.prefix.#{klass}.#{type}", :default => type.gsub("_", " ").capitalize
+ prefix = t "geocoder.search_osm_nominatim.prefix_format", :name => prefix_name
+
+ @results.push({:lat => lat, :lon => lon,
+ :min_lat => min_lat, :max_lat => max_lat,
+ :min_lon => min_lon, :max_lon => max_lon,
+ :prefix => prefix, :name => name})
+ @more_params[:exclude].push(place.attributes["place_id"].to_s)