X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b9c9d6c1aafdd60c72b54345b4d2dc94317298a0..6fb857020092c909043c4521b91a040f3bb16937:/lib/map_boundary.rb diff --git a/lib/map_boundary.rb b/lib/map_boundary.rb index f2a0c0b52..7d20d2920 100644 --- a/lib/map_boundary.rb +++ b/lib/map_boundary.rb @@ -26,8 +26,8 @@ module MapBoundary # check the bbox isn't too large requested_area = (max_lat-min_lat)*(max_lon-min_lon) - if requested_area > APP_CONFIG['max_request_area'] - raise OSM::APIBadBoundingBox.new("The maximum bbox size is " + APP_CONFIG['max_request_area'].to_s + + if requested_area > MAX_REQUEST_AREA + raise OSM::APIBadBoundingBox.new("The maximum bbox size is " + MAX_REQUEST_AREA.to_s + ", and your request was too large. Either request a smaller area, or use planet.osm") end end