+ render :layout => false
+ end
+
+ def edit
+ editor = preferred_editor
+
+ if editor == "remote"
+ require_oauth
+ render :action => :index, :layout => map_layout
+ return
+ else
+ require_user
+ end
+
+ if editor == "potlatch" || editor == "potlatch2"
+ append_content_security_policy_directives(
+ :object_src => %w(*),
+ :plugin_types => %w(application/x-shockwave-flash),
+ :script_src => %w('unsafe-inline')
+ )
+ end
+
+ if params[:node]
+ 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] && @user
+ trace = Trace.visible_to(@user).find(params[:gpx])
+ @lat = trace.latitude
+ @lon = trace.longitude
+ @zoom = 16
+ end
+ end
+
+ def copyright
+ @locale = params[:copyright_locale] || I18n.locale
+ end
+
+ def welcome; end
+
+ def help; end
+
+ def about; end
+
+ def export; end
+
+ def offline; end
+
+ def preview
+ render :text => RichText.new(params[:format], params[:text]).to_html
+ end
+
+ def id
+ append_content_security_policy_directives(
+ :connect_src => %w(taginfo.openstreetmap.org *.mapillary.com),
+ :img_src => %w(*),
+ :script_src => %w(dev.virtualearth.net)
+ )
+
+ render "id", :layout => false
+ end
+
+ private
+
+ def redirect_browse_params
+ if params[:node]
+ redirect_to node_path(params[:node])
+ elsif params[:way]
+ redirect_to way_path(params[:way])
+ elsif params[:relation]
+ 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
+
+ def redirect_map_params
+ anchor = []
+
+ if params[:lat] && params[:lon]
+ anchor << "map=#{params.delete(:zoom) || 5}/#{params.delete(:lat)}/#{params.delete(:lon)}"
+ end
+
+ if params[:layers]
+ anchor << "layers=#{params.delete(:layers)}"
+ elsif params.delete(:notes) == "yes"
+ anchor << "layers=N"
+ end
+
+ if anchor.present?
+ redirect_to Hash[params].merge(:anchor => anchor.join("&"))
+ end