X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d0b845fc6025f2fb84a4cf4fa10cbb71084843a7..30ae9fb928abd1b2a30f5b1c0253bc195ffff14d:/app/views/export/start.rjs diff --git a/app/views/export/start.rjs b/app/views/export/start.rjs index dd879132a..d556d8bf9 100644 --- a/app/views/export/start.rjs +++ b/app/views/export/start.rjs @@ -77,7 +77,7 @@ page << < 0.25) { - $("format_osm").disabled = true; - $("format_osm").checked = false; - $("export_osm").style.display = "none"; + if (bounds.getWidth() * bounds.getHeight() > #{APP_CONFIG['max_request_area']}) { + $("export_osm_too_large").style.display = "block"; } else { - $("format_osm").disabled = false; + $("export_osm_too_large").style.display = "none"; } var max_scale = maxMapnikScale(); - if ($("format_mapnik").checked && $("mapnik_scale").value < max_scale) { + if ($("format_osm").checked && bounds.getWidth() * bounds.getHeight() > #{APP_CONFIG['max_request_area']}) { + $("export_commit").disabled = true; + } else if ($("format_mapnik").checked && $("mapnik_scale").value < max_scale) { $("export_commit").disabled = true; } else { $("export_commit").disabled = false; @@ -248,7 +248,7 @@ page << <#{I18n.t('export.start_rjs.view_larger_map')}'; + html += '
'+"#{html_escape_unicode(I18n.t('export.start_rjs.view_larger_map'))}"+''; $("export_html_text").value = html;