Files
mapknitter/app/models/way.rb
2010-02-25 16:16:58 -05:00

10 lines
178 B
Ruby

class Way < ActiveRecord::Base
has_many :nodes
def bbox=(bbox)
# counting from left, counter-clockwise
self.lon1,self.lat2,self.lon2,self.lat1 = bbox
end
end