Class: Kamelopard::Region

Inherits:
Object
  • Object
show all
Defined in:
lib/kamelopard/classes.rb

Overview

Corresponds to the KML Region object

Instance Attribute Summary collapse

Attributes inherited from Object

#comment, #kml_id, #master_only

Instance Method Summary collapse

Methods inherited from Object

#_alternate_to_kml, #change, #master_only?

Constructor Details

#initialize(options = {}) ⇒ Region

Returns a new instance of Region.



2115
2116
2117
# File 'lib/kamelopard/classes.rb', line 2115

def initialize(options = {})
    super
end

Instance Attribute Details

#latlonaltboxObject

Returns the value of attribute latlonaltbox.



2113
2114
2115
# File 'lib/kamelopard/classes.rb', line 2113

def latlonaltbox
  @latlonaltbox
end

#lodObject

Returns the value of attribute lod.



2113
2114
2115
# File 'lib/kamelopard/classes.rb', line 2113

def lod
  @lod
end

Instance Method Details

#to_kml(elem = nil) ⇒ Object



2119
2120
2121
2122
2123
2124
2125
2126
# File 'lib/kamelopard/classes.rb', line 2119

def to_kml(elem = nil)
    k = XML::Node.new 'Region'
    super k
    @latlonaltbox.to_kml(k, true) unless @latlonaltbox.nil?
    @lod.to_kml(k) unless @lod.nil?
    elem << k unless elem.nil?
    k
end