X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/6b4803d87fc957d0a779ebedc39e8499af1b7733..d736a158bee0ff17bdba30496b87e1bfe20e2910:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index 58a009a3b..767220c79 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -2,9 +2,15 @@ class SiteController < ApplicationController before_filter :authorize_web before_filter :require_user, :only => [:edit] + def goto_way + way = Way.find(params[:id]) - def search - @tags = WayTag.find(:all, :conditions => ["match(v) against (?)", params[:query][:query].to_s] ) + 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