X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0dba53c0232385f0fd080266f9a5ce3665426293..d6c3fe575994b627eb4438cd49143f2017449169:/lib/geo_record.rb diff --git a/lib/geo_record.rb b/lib/geo_record.rb index 0728a6aa1..d338f1b66 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 { |minlat,minlon,maxlat,maxlon| base.where(OSM.sql_for_area(minlat, minlon, maxlat, maxlon)) } 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