]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/site_controller.rb
Make the /export URL work.
[rails.git] / app / controllers / site_controller.rb
index 58a009a3b81a4e2a98f844ebc5e784aa500d3cf3..172d5da9cc9b3149a3bc3f2e441083f9d6eaaac3 100644 (file)
@@ -2,9 +2,18 @@ class SiteController < ApplicationController
   before_filter :authorize_web
   before_filter :require_user, :only => [:edit]
 
-
-  def search
-    @tags = WayTag.find(:all, :conditions => ["match(v) against (?)", params[:query][:query].to_s] )
+  def export
+    render :action => 'index'
   end
 
+  def goto_way
+    way = Way.find(params[:id])
+
+    begin
+      node = way.way_nodes.first.node
+      redirect_to :controller => 'site', :action => 'index', :lat => node.latitude, :lon => node.longitude, :zoom => 6
+    rescue
+      redirect_to :back
+    end
+  end
 end