]> git.openstreetmap.org Git - rails.git/commitdiff
Disable OSM export when the area is too large.
authorTom Hughes <tom@compton.nu>
Tue, 8 Apr 2008 18:38:43 +0000 (18:38 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 8 Apr 2008 18:38:43 +0000 (18:38 +0000)
app/views/export/_start.rhtml

index 41fd790f2f5d539895cb337ee68b8e37f8e503f0..08306e13c8f04f9324fb860411ca695879735678 100644 (file)
     updateRegion(map.getExtent());
   }
 
     updateRegion(map.getExtent());
   }
 
-  function setFormat(format) {
-    $("export_osm").style.display = "none";
-    $("export_mapnik").style.display = "none";
-    $("export_" + format).style.display = "inline";
+  function formatChanged() {
+    if ($("export_format_osm").checked) {
+      $("export_osm").style.display = "inline";
+    } else {
+      $("export_osm").style.display = "none";
+    }
+
+    if ($("export_format_png").checked ||
+        $("export_format_pdf").checked ||
+        $("export_format_svg").checked) {
+      $("export_mapnik").style.display = "inline";
+    } else {
+      $("export_mapnik").style.display = "none";
+    }
   }
 
   }
 
-  $("export_format_osm").onclick = function() { setFormat("osm") };
-  $("export_format_png").onclick = function() { setFormat("mapnik") };
-  $("export_format_pdf").onclick = function() { setFormat("mapnik") };
-  $("export_format_svg").onclick = function() { setFormat("mapnik") };
+  $("export_format_osm").onclick = function() { formatChanged() };
+  $("export_format_png").onclick = function() { formatChanged() };
+  $("export_format_pdf").onclick = function() { formatChanged() };
+  $("export_format_svg").onclick = function() { formatChanged() };
 
   function mapMoved() {
     updateRegion(map.getExtent());
 
   function mapMoved() {
     updateRegion(map.getExtent());
   }
 
   function updateRegion(bounds) {
   }
 
   function updateRegion(bounds) {
+    var epsg4326 = new OpenLayers.Projection("EPSG:4326");
     var decimals = Math.pow(10, Math.floor(map.getZoom() / 3));
     var decimals = Math.pow(10, Math.floor(map.getZoom() / 3));
-    var bl = mercatorToLonLat(new OpenLayers.LonLat(bounds.left, bounds.bottom));
-    var tr = mercatorToLonLat(new OpenLayers.LonLat(bounds.right, bounds.top));
 
 
-    $("export_maxlat").value = Math.round(tr.lat * decimals) / decimals;
-    $("export_minlon").value = Math.round(bl.lon * decimals) / decimals;
-    $("export_maxlon").value = Math.round(tr.lon * decimals) / decimals;
-    $("export_minlat").value = Math.round(bl.lat * decimals) / decimals;
+    bounds.transform(map.getProjectionObject(), epsg4326);
+
+    $("export_maxlat").value = Math.round(bounds.top * decimals) / decimals;
+    $("export_minlon").value = Math.round(bounds.left * decimals) / decimals;
+    $("export_maxlon").value = Math.round(bounds.right * decimals) / decimals;
+    $("export_minlat").value = Math.round(bounds.bottom * decimals) / decimals;
+
+    if (bounds.getWidth() * bounds.getHeight() > 0.25) {
+      $("export_format_osm").disabled = true;
+      $("export_format_osm").checked = false;
+
+      formatChanged();
+    } else {
+      $("export_format_osm").disabled = false;
+    }
   }
 
   startExport();
   }
 
   startExport();