end
end
+ def ways
+ response.headers["Content-Type"] = 'application/xml'
+ ids = params['ways'].split(',').collect {|w| w.to_i }
+ if ids.length > 0
+ waylist = Way.find(ids)
+ doc = get_xml_doc
+ waylist.each do |way|
+ doc.root << way.to_xml_node
+ end
+ render :text => doc.to_s
+ else
+ render :nothing => true, :status => 400
+ end
+ end
+
end
map.connect "api/#{API_VERSION}/way/create", :controller => 'way', :action => 'create'
map.connect "api/#{API_VERSION}/way/:id/history", :controller => 'old_way', :action => 'history', :id => nil
map.connect "api/#{API_VERSION}/way/:id", :controller => 'way', :action => 'rest', :id => nil
+ map.connect "api/#{API_VERSION}/ways", :controller => 'way', :action => 'ways', :id => nil
map.connect "api/#{API_VERSION}/map", :controller => 'api', :action => 'map'