X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9c0582f88fd2ef4e20c6eb922bcd4cb1a04258d5..7e0fb05dd2128ea7e93ac214bca813388ceaa012:/lib/bounding_box.rb diff --git a/lib/bounding_box.rb b/lib/bounding_box.rb index d6b5f45c8..d5d3d7849 100644 --- a/lib/bounding_box.rb +++ b/lib/bounding_box.rb @@ -63,8 +63,8 @@ class BoundingBox raise OSM::APIBadBoundingBox, "The minimum latitude must be less than the maximum latitude, but it wasn't" if min_lat > max_lat if min_lon < -LON_LIMIT || min_lat < -LAT_LIMIT || max_lon > +LON_LIMIT || max_lat > +LAT_LIMIT - raise OSM::APIBadBoundingBox, "The latitudes must be between #{-LAT_LIMIT} and #{LAT_LIMIT}," \ - " and longitudes between #{-LON_LIMIT} and #{LON_LIMIT}" + raise OSM::APIBadBoundingBox, "The latitudes must be between #{-LAT_LIMIT} and #{LAT_LIMIT}, " \ + "and longitudes between #{-LON_LIMIT} and #{LON_LIMIT}" end self end