Class: Kamelopard::AnimatedUpdate

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

Overview

Corresponds to KML’s gx:AnimatedUpdate object. For now at least, this isn’t very intelligent; you’ve got to manually craft the <Change> tag(s) within the object.

Instance Attribute Summary collapse

Attributes inherited from TourPrimitive

#standalone

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(updates, options = {}) ⇒ AnimatedUpdate

The updates argument is an array of strings containing <Change> elements



1702
1703
1704
1705
1706
1707
# File 'lib/kamelopard/classes.rb', line 1702

def initialize(updates, options = {})
 #duration = 0, target = '', delayedstart = nil)
    @updates = []
    super options
    @updates = updates unless updates.nil? or updates.size == 0
end

Instance Attribute Details

#delayedStartObject

XXX For now, the user has to specify the change / create / delete elements in the <Update> manually, rather than creating objects.



1698
1699
1700
# File 'lib/kamelopard/classes.rb', line 1698

def delayedStart
  @delayedStart
end

#durationObject

XXX For now, the user has to specify the change / create / delete elements in the <Update> manually, rather than creating objects.



1698
1699
1700
# File 'lib/kamelopard/classes.rb', line 1698

def duration
  @duration
end

#targetObject

XXX For now, the user has to specify the change / create / delete elements in the <Update> manually, rather than creating objects.



1698
1699
1700
# File 'lib/kamelopard/classes.rb', line 1698

def target
  @target
end

#updatesObject

Returns the value of attribute updates.



1699
1700
1701
# File 'lib/kamelopard/classes.rb', line 1699

def updates
  @updates
end

Instance Method Details

#<<(a) ⇒ Object

Adds another update string, presumably containing a <Change> element



1722
1723
1724
# File 'lib/kamelopard/classes.rb', line 1722

def <<(a)
    @updates << a
end

#to_kml(elem = nil) ⇒ Object



1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
# File 'lib/kamelopard/classes.rb', line 1726

def to_kml(elem = nil)
    k = XML::Node.new 'gx:AnimatedUpdate'
    super(k)
    d = XML::Node.new 'gx:duration'
    d << @duration.to_s
    k << d
    if not @delayedStart.nil? then
        d = XML::Node.new 'gx:delayedStart'
        d << @delayedStart.to_s
        k << d
    end
    d = XML::Node.new 'Update'
    q = XML::Node.new 'targetHref'
    q << @target.to_s
    d << q
    @updates.each do |i|
        if i.is_a? XML::Node then
            d << i
        else
            parser = reader = XML::Parser.string(i)
            doc = parser.parse
            node = doc.child
            n = node.copy true
            d << n
        end
    end
    k << d
    elem << k unless elem.nil?
    k
end