+ def description_osm_namefinder(types, lat, lon, max)
+ results = Array.new
+
+ # ask OSM namefinder
+ response = fetch_xml("http://www.frankieandshadow.com/osm/search.xml?find=#{types}+near+#{lat},#{lon}&max=#{max}")
+
+ # parse the response
+ response.elements.each("searchresults/named") do |named|
+ lat = named.attributes["lat"].to_s
+ lon = named.attributes["lon"].to_s
+ zoom = named.attributes["zoom"].to_s
+ place = named.elements["place/named"] || named.elements["nearestplaces/named"]
+ type = named.attributes["info"].to_s
+ name = named.attributes["name"].to_s
+ description = named.elements["description"].to_s
+ distance = format_distance(place.attributes["approxdistance"].to_i)
+ direction = format_direction(360 - place.attributes["direction"].to_i)
+ prefix = "#{distance} #{direction} of #{type} "
+ results.push({:lat => lat, :lon => lon, :zoom => zoom,
+ :prefix => prefix.capitalize, :name => name,
+ :description => description})
+ end
+
+ return { :type => types.capitalize, :source => "OpenStreetMap Namefinder", :url => "http://www.frankieandshadow.com/osm/", :results => results }
+ rescue Exception => ex
+ return { :type => types.capitalize, :source => "OpenStreetMap Namefinder", :url => "http://www.frankieandshadow.com/osm/", :error => "Error contacting www.frankieandshadow.com: #{ex.to_s}" }
+ end
+