openstreetmap-website/app/views/api/maps/show.xml.builder
2025-01-24 10:47:58 +03: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