]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/export_controller.rb
Merge branch 'master' into feature/add-communities-page
[rails.git] / app / controllers / export_controller.rb
index 50aa2a3c96f43838467568b2085c4aa2036fa059..94851de96485741758d681a1247be029c402dc17 100644 (file)
@@ -11,16 +11,17 @@ class ExportController < ApplicationController
     bbox = BoundingBox.from_lon_lat_params(params)
     format = params[:format]
 
-    if format == "osm"
+    case format
+    when "osm"
       # redirect to API map get
       redirect_to :controller => "api/map", :action => "index", :bbox => bbox
 
-    elsif format == "mapnik"
+    when "mapnik"
       # redirect to a special 'export' cgi script
       format = params[:mapnik_format]
       scale = params[:mapnik_scale]
 
-      redirect_to "https://render.openstreetmap.org/cgi-bin/export?bbox=#{bbox}&scale=#{scale}&format=#{format}"
+      redirect_to "https://render.openstreetmap.org/cgi-bin/export?bbox=#{bbox}&scale=#{scale}&format=#{format}", :allow_other_host => true
     end
   end