can now navigate to the map from a searched-for tag in a way

This commit is contained in:
Steve Coast 2007-04-07 18:44:22 +00:00
parent 6b4803d87f
commit 8edf08405d
2 changed files with 14 additions and 1 deletions

View file

@ -4,7 +4,18 @@ class SiteController < ApplicationController
def search
@tags = WayTag.find(:all, :conditions => ["match(v) against (?)", params[:query][:query].to_s] )
@tags = WayTag.find(:all, :limit => 11, :conditions => ["match(v) against (?)", params[:query][:query].to_s] )
end
def goto_way
way = Way.find(params[:id])
begin
node = way.way_segments.first.segment.from_node
redirect_to :controller => 'site', :action => 'index', :lat => node.latitude, :lon => node.longitude, :zoom => 6
rescue
redirect_to :back
end
end
end