]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/site_controller.rb
Use the map layout when rendering index for a remote edit
[rails.git] / app / controllers / site_controller.rb
index 1757e771a9fc085a5c85c8b8c7906d5ebdf56aad..2f5a9a494c61aa8e6da2dd2e925136c3ebb56c00 100644 (file)
@@ -42,7 +42,7 @@ class SiteController < ApplicationController
 
     if editor == "remote"
       require_oauth
-      render :action => :index
+      render :action => :index, :layout => map_layout
       return
     end
 
@@ -50,18 +50,22 @@ class SiteController < ApplicationController
       bbox = Node.find(params[:node]).bbox.to_unscaled
       @lat = bbox.centre_lat
       @lon = bbox.centre_lon
+      @zoom = 18
     elsif params[:way]
       bbox = Way.find(params[:way]).bbox.to_unscaled
       @lat = bbox.centre_lat
       @lon = bbox.centre_lon
+      @zoom = 17
     elsif params[:note]
       note = Note.find(params[:note])
       @lat = note.lat
       @lon = note.lon
+      @zoom = 17
     elsif params[:gpx]
       trace = Trace.visible_to(@user).find(params[:gpx])
       @lat = trace.latitude
       @lon = trace.longitude
+      @zoom = 16
     end
   end
 
@@ -97,6 +101,8 @@ class SiteController < ApplicationController
       redirect_to relation_path(params[:relation])
     elsif params[:note]
       redirect_to browse_note_path(params[:note])
+    elsif params[:query]
+      redirect_to search_path(:query => params[:query])
     end
   end