openstreetmap-website/app/views/api/map/index.xml.builder
2019-06-26 22:29:18 +02:00

8 lines
235 B
Ruby

xml.instruct!
xml.osm(OSM::API.new.xml_root_attributes) do |osm|
osm << (render(:partial => "bounds", :object => @bounds) || "")
osm << (render(@nodes) || "")
osm << (render(@ways) || "")
osm << (render(@relations) || "")
end