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?, parse

Constructor Details

#initialize(options = {}) ⇒ Region

Returns a new instance of Region.



2129
2130
2131
# File 'lib/kamelopard/classes.rb', line 2129

def initialize(options = {})
    super
end

Instance Attribute Details

#latlonaltboxObject

Returns the value of attribute latlonaltbox.



2127
2128
2129
# File 'lib/kamelopard/classes.rb', line 2127

def latlonaltbox
  @latlonaltbox
end

#lodObject

Returns the value of attribute lod.



2127
2128
2129
# File 'lib/kamelopard/classes.rb', line 2127

def lod
  @lod
end

Instance Method Details

#to_kml(elem = nil) ⇒ Object



2133
2134
2135
2136
2137
2138
2139
2140
# File 'lib/kamelopard/classes.rb', line 2133

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