]> git.openstreetmap.org Git - rails.git/commitdiff
can now navigate to the map from a searched-for tag in a way
authorSteve Coast <steve@asklater.com>
Sat, 7 Apr 2007 18:44:22 +0000 (18:44 +0000)
committerSteve Coast <steve@asklater.com>
Sat, 7 Apr 2007 18:44:22 +0000 (18:44 +0000)
app/controllers/site_controller.rb
app/models/way_segment.rb

index 58a009a3b81a4e2a98f844ebc5e784aa500d3cf3..3c7d3ff82a4c97d1283bf5ed353618eaf5424c8a 100644 (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
index 502174d7b5b4a6f89c7b50900740b31be1922a20..bc81f6b2668c404e8025d492ba11d2724daf1153 100644 (file)
@@ -1,3 +1,5 @@
 class WaySegment < ActiveRecord::Base
   set_table_name 'current_way_segments'
+
+  belongs_to :segment
 end