7 lines
208 B
Ruby
7 lines
208 B
Ruby
xml.instruct! :xml, :version => "1.0"
|
|
|
|
xml.osm(OSM::API.new.xml_root_attributes) do |osm|
|
|
@traces.each do |trace|
|
|
osm << render(:partial => "api/traces/trace", :locals => { :trace => trace })
|
|
end
|
|
end
|