class Twitter::Geo::Point

Public Instance Methods

lat()
Alias for: latitude
latitude() click to toggle source

@return [Integer]

# File lib/twitter/geo/point.rb, line 7
def latitude
  coordinates[0]
end
Also aliased as: lat
lng()
Alias for: longitude
long()
Alias for: longitude
longitude() click to toggle source

@return [Integer]

# File lib/twitter/geo/point.rb, line 13
def longitude
  coordinates[1]
end
Also aliased as: long, lng