class Geonames::BoundingBox

Attributes

east_point[RW]
north_point[RW]
south_point[RW]
west_point[RW]

Public Class Methods

new(north=0.0, south=0.0, east=0.0, west=0.0) click to toggle source
# File lib/geonames/bounding_box.rb, line 5
def initialize(north=0.0, south=0.0, east=0.0, west=0.0)
  self.north_point = north
  self.south_point = south
  self.east_point  = east
  self.west_point  = west
end