X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0dba53c0232385f0fd080266f9a5ce3665426293..b7967002d8cb817a193f950a2e924022d2b6a634:/lib/geo_record.rb diff --git a/lib/geo_record.rb b/lib/geo_record.rb index 0728a6aa1..0d010eb86 100644 --- a/lib/geo_record.rb +++ b/lib/geo_record.rb @@ -5,7 +5,7 @@ module GeoRecord SCALE = 10000000 def self.included(base) - base.extend(ClassMethods) + base.scope :bbox, lambda { |bbox| base.where(OSM.sql_for_area(bbox)) } base.before_save :update_tile end @@ -44,13 +44,5 @@ private def lat2y(a) 180/Math::PI * Math.log(Math.tan(Math::PI/4+a*(Math::PI/180)/2)) end - - module ClassMethods - def find_by_area(minlat, minlon, maxlat, maxlon, options) - self.with_scope(:find => {:conditions => OSM.sql_for_area(minlat, minlon, maxlat, maxlon)}) do - return self.find(:all, options) - end - end - end end