Revert half baked attempt at poi api call - this needs much more

thought before it's ready.
This commit is contained in:
Tom Hughes 2009-12-14 22:19:51 +00:00
parent fb912fba71
commit 5451310d3c

View file

@ -144,11 +144,6 @@ class ApiController < ApplicationController
return return
end end
if param[:restriction] and param[:restriction] != "nodes_only"
report_error("The parameter restriction may only take one of the following values: nodes_only")
return
end
# FIXME um why is this area using a different order for the lat/lon from above??? # FIXME um why is this area using a different order for the lat/lon from above???
@nodes = Node.find_by_area(min_lat, min_lon, max_lat, max_lon, :conditions => {:visible => true}, :include => :node_tags, :limit => APP_CONFIG['max_number_of_nodes']+1) @nodes = Node.find_by_area(min_lat, min_lon, max_lat, max_lon, :conditions => {:visible => true}, :include => :node_tags, :limit => APP_CONFIG['max_number_of_nodes']+1)
# get all the nodes, by tag not yet working, waiting for change from NickB # get all the nodes, by tag not yet working, waiting for change from NickB
@ -175,14 +170,6 @@ class ApiController < ApplicationController
bounds['maxlon'] = max_lon.to_s bounds['maxlon'] = max_lon.to_s
doc.root << bounds doc.root << bounds
# bail out at this stage if user has indicated that he is
# not interested in ways or relations.
if params[:restriction] == "nodes_only"
response.headers["Content-Disposition"] = "attachment; filename=\"map.osm\""
render :text => doc.to_s, :content_type => "text/xml"
return
end
# get ways # get ways
# find which ways are needed # find which ways are needed
ways = Array.new ways = Array.new