Class: Kamelopard::Alias
- Inherits:
-
Object
- Object
- Kamelopard::Alias
- Defined in:
- lib/kamelopard/classes.rb
Overview
Sub-object in the KML ResourceMap class
Instance Attribute Summary collapse
-
#sourceHref ⇒ Object
Returns the value of attribute sourceHref.
-
#targetHref ⇒ Object
Returns the value of attribute targetHref.
Instance Method Summary collapse
-
#initialize(targetHref = nil, sourceHref = nil) ⇒ Alias
constructor
A new instance of Alias.
- #to_kml(elem = nil) ⇒ Object
Constructor Details
#initialize(targetHref = nil, sourceHref = nil) ⇒ Alias
Returns a new instance of Alias.
2188 2189 2190 2191 |
# File 'lib/kamelopard/classes.rb', line 2188 def initialize(targetHref = nil, sourceHref = nil) @targetHref = targetHref @sourceHref = sourceHref end |
Instance Attribute Details
#sourceHref ⇒ Object
Returns the value of attribute sourceHref.
2187 2188 2189 |
# File 'lib/kamelopard/classes.rb', line 2187 def sourceHref @sourceHref end |
#targetHref ⇒ Object
Returns the value of attribute targetHref.
2187 2188 2189 |
# File 'lib/kamelopard/classes.rb', line 2187 def targetHref @targetHref end |
Instance Method Details
#to_kml(elem = nil) ⇒ Object
2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 |
# File 'lib/kamelopard/classes.rb', line 2193 def to_kml(elem = nil) x = XML::Node.new 'Alias' { :targetHref => @targetHref, :sourceHref => @sourceHref, }.each do |k, v| d = XML::Node.new k.to_s d << v.to_s x << d end elem << x unless elem.nil? x end |