Class: Kamelopard::LatLonBox
- Inherits:
-
Object
- Object
- Kamelopard::LatLonBox
- Defined in:
- lib/kamelopard/classes.rb
Overview
Corresponds to KML’s LatLonBox and LatLonAltBox
Instance Attribute Summary collapse
-
#altitudeMode ⇒ Object
Returns the value of attribute altitudeMode.
-
#east ⇒ Object
Returns the value of attribute east.
-
#maxAltitude ⇒ Object
Returns the value of attribute maxAltitude.
-
#minAltitude ⇒ Object
Returns the value of attribute minAltitude.
-
#north ⇒ Object
Returns the value of attribute north.
-
#rotation ⇒ Object
Returns the value of attribute rotation.
-
#south ⇒ Object
Returns the value of attribute south.
-
#west ⇒ Object
Returns the value of attribute west.
Instance Method Summary collapse
-
#initialize(north, south, east, west, rotation = 0, minAltitude = nil, maxAltitude = nil, altitudeMode = :clampToGround) ⇒ LatLonBox
constructor
A new instance of LatLonBox.
- #to_kml(elem = nil, alt = false) ⇒ Object
Constructor Details
#initialize(north, south, east, west, rotation = 0, minAltitude = nil, maxAltitude = nil, altitudeMode = :clampToGround) ⇒ LatLonBox
Returns a new instance of LatLonBox.
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 |
# File 'lib/kamelopard/classes.rb', line 2164 def initialize(north, south, east, west, rotation = 0, minAltitude = nil, maxAltitude = nil, altitudeMode = :clampToGround) @north = Kamelopard.convert_coord north @south = Kamelopard.convert_coord south @east = Kamelopard.convert_coord east @west = Kamelopard.convert_coord west @minAltitude = minAltitude @maxAltitude = maxAltitude @altitudeMode = altitudeMode @rotation = rotation end |
Instance Attribute Details
#altitudeMode ⇒ Object
Returns the value of attribute altitudeMode.
2162 2163 2164 |
# File 'lib/kamelopard/classes.rb', line 2162 def altitudeMode @altitudeMode end |
#east ⇒ Object
Returns the value of attribute east.
2161 2162 2163 |
# File 'lib/kamelopard/classes.rb', line 2161 def east @east end |
#maxAltitude ⇒ Object
Returns the value of attribute maxAltitude.
2162 2163 2164 |
# File 'lib/kamelopard/classes.rb', line 2162 def maxAltitude @maxAltitude end |
#minAltitude ⇒ Object
Returns the value of attribute minAltitude.
2162 2163 2164 |
# File 'lib/kamelopard/classes.rb', line 2162 def minAltitude @minAltitude end |
#north ⇒ Object
Returns the value of attribute north.
2161 2162 2163 |
# File 'lib/kamelopard/classes.rb', line 2161 def north @north end |
#rotation ⇒ Object
Returns the value of attribute rotation.
2162 2163 2164 |
# File 'lib/kamelopard/classes.rb', line 2162 def rotation @rotation end |
#south ⇒ Object
Returns the value of attribute south.
2161 2162 2163 |
# File 'lib/kamelopard/classes.rb', line 2161 def south @south end |
#west ⇒ Object
Returns the value of attribute west.
2161 2162 2163 |
# File 'lib/kamelopard/classes.rb', line 2161 def west @west end |
Instance Method Details
#to_kml(elem = nil, alt = false) ⇒ Object
2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 |
# File 'lib/kamelopard/classes.rb', line 2191 def to_kml(elem = nil, alt = false) name = alt ? 'LatLonAltBox' : 'LatLonBox' k = XML::Node.new name [ ['north', @north], ['south', @south], ['east', @east], ['west', @west], ['minAltitude', @minAltitude], ['maxAltitude', @maxAltitude] ].each do |a| if not a[1].nil? then m = XML::Node.new a[0] m << a[1].to_s k << m end end if (not @minAltitude.nil? or not @maxAltitude.nil?) then Kamelopard.add_altitudeMode(@altitudeMode, k) end m = XML::Node.new 'rotation' m << @rotation.to_s k << m elem << k unless elem.nil? k end |