X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/315d1dab540ad5c11e7a22201387327525578229..4395ed6117c6f602a883455b012186368028e3c1:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index 5c391d7b2..779ea1a88 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -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 @@ -78,6 +82,12 @@ class SiteController < ApplicationController def about end + def export + end + + def offline + end + def preview render :text => RichText.new(params[:format], params[:text]).to_html end