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.



2078
2079
2080
# File 'lib/kamelopard/classes.rb', line 2078

def initialize(options = {})
    super
end

Instance Attribute Details

#latlonaltboxObject

Returns the value of attribute latlonaltbox.



2076
2077
2078
# File 'lib/kamelopard/classes.rb', line 2076

def latlonaltbox
  @latlonaltbox
end

#lodObject

Returns the value of attribute lod.



2076
2077
2078
# File 'lib/kamelopard/classes.rb', line 2076

def lod
  @lod
end

Instance Method Details

#to_kml(elem = nil) ⇒ Object



2082
2083
2084
2085
2086
2087
2088
2089
# File 'lib/kamelopard/classes.rb', line 2082

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