Class: Dotter::LatLng
- Inherits:
-
Object
- Object
- Dotter::LatLng
- Defined in:
- lib/dotter/lat_lng.rb
Instance Attribute Summary collapse
-
#lat ⇒ Object
(also: #latitude)
Returns the value of attribute lat.
-
#lng ⇒ Object
(also: #longitude)
Returns the value of attribute lng.
Instance Method Summary collapse
-
#initialize(lat, lng) ⇒ LatLng
constructor
A new instance of LatLng.
Constructor Details
#initialize(lat, lng) ⇒ LatLng
Returns a new instance of LatLng.
6 7 8 |
# File 'lib/dotter/lat_lng.rb', line 6 def initialize(lat, lng) @lat, @lng = lat.to_f, lng.to_f end |
Instance Attribute Details
#lat ⇒ Object Also known as: latitude
Returns the value of attribute lat.
2 3 4 |
# File 'lib/dotter/lat_lng.rb', line 2 def lat @lat end |
#lng ⇒ Object Also known as: longitude
Returns the value of attribute lng.
2 3 4 |
# File 'lib/dotter/lat_lng.rb', line 2 def lng @lng end |