Class: Kamelopard::LinearRing
- Includes:
- CoordinateList
- Defined in:
- lib/kamelopard/classes.rb
Overview
Corresponds to KML’s LinearRing object
Instance Attribute Summary collapse
-
#altitudeMode ⇒ Object
Returns the value of attribute altitudeMode.
-
#altitudeOffset ⇒ Object
Returns the value of attribute altitudeOffset.
-
#extrude ⇒ Object
Returns the value of attribute extrude.
-
#tessellate ⇒ Object
Returns the value of attribute tessellate.
Attributes included from CoordinateList
Attributes inherited from Object
#comment, #kml_id, #master_only
Instance Method Summary collapse
-
#initialize(coordinates = [], options = {}) ⇒ LinearRing
constructor
A new instance of LinearRing.
- #to_kml(elem = nil) ⇒ Object
Methods included from CoordinateList
#<<, #add_element, #coordinates_to_kml
Methods inherited from Object
#_alternate_to_kml, #change, #master_only?
Constructor Details
#initialize(coordinates = [], options = {}) ⇒ LinearRing
Returns a new instance of LinearRing.
470 471 472 473 474 475 476 477 478 |
# File 'lib/kamelopard/classes.rb', line 470 def initialize(coordinates = [], = {}) @tessellate = 0 @extrude = 0 @altitudeMode = :clampToGround @coordinates = [] super self.coordinates=(coordinates) unless coordinates.nil? end |
Instance Attribute Details
#altitudeMode ⇒ Object
Returns the value of attribute altitudeMode.
467 468 469 |
# File 'lib/kamelopard/classes.rb', line 467 def altitudeMode @altitudeMode end |
#altitudeOffset ⇒ Object
Returns the value of attribute altitudeOffset.
467 468 469 |
# File 'lib/kamelopard/classes.rb', line 467 def altitudeOffset @altitudeOffset end |
#extrude ⇒ Object
Returns the value of attribute extrude.
467 468 469 |
# File 'lib/kamelopard/classes.rb', line 467 def extrude @extrude end |
#tessellate ⇒ Object
Returns the value of attribute tessellate.
467 468 469 |
# File 'lib/kamelopard/classes.rb', line 467 def tessellate @tessellate end |
Instance Method Details
#to_kml(elem = nil) ⇒ Object
480 481 482 483 484 485 486 487 488 489 490 491 492 |
# File 'lib/kamelopard/classes.rb', line 480 def to_kml(elem = nil) k = XML::Node.new 'LinearRing' super(k) Kamelopard.kml_array(k, [ [ @altitudeOffset, 'gx:altitudeOffset' ], [ @tessellate, 'tessellate' ], [ @extrude, 'extrude' ] ]) Kamelopard.add_altitudeMode(@altitudeMode, k) coordinates_to_kml(k) unless @coordinates.nil? elem << k unless elem.nil? k end |