openstreetmap-website/app/views/api/map/_bounds.xml.builder
2019-06-26 21:34:40 +02:00

8 lines
214 B
Ruby

attrs = {
"minlat" => format("%.7f", bounds.min_lat),
"minlon" => format("%.7f", bounds.min_lon),
"maxlat" => format("%.7f", bounds.max_lat),
"maxlon" => format("%.7f", bounds.max_lon)
}
xml.bounds(attrs)