X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0814b4096c443e2ab3c09baa058aa81a00d205d1..dbd88d893f3c3fce9cafd666b94396988646d81f:/lib/bounding_box.rb diff --git a/lib/bounding_box.rb b/lib/bounding_box.rb index 11e831cfe..51972efbc 100644 --- a/lib/bounding_box.rb +++ b/lib/bounding_box.rb @@ -137,10 +137,10 @@ class BoundingBox # there are two forms used for bounds with and without an underscore, # cater for both forms eg minlon and min_lon def add_bounds_to(hash, underscore = "") - hash["min#{underscore}lat"] = min_lat.to_s - hash["min#{underscore}lon"] = min_lon.to_s - hash["max#{underscore}lat"] = max_lat.to_s - hash["max#{underscore}lon"] = max_lon.to_s + hash["min#{underscore}lat"] = format("%.7f", min_lat) + hash["min#{underscore}lon"] = format("%.7f", min_lon) + hash["max#{underscore}lat"] = format("%.7f", max_lat) + hash["max#{underscore}lon"] = format("%.7f", max_lon) hash end