openstreetmap-website/app/views/api/users/traces/index.builder
2024-12-27 05:44:09 +03:00

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