Class: Kamelopard::FlyTo

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

Overview

Cooresponds to KML’s gx:FlyTo object. The @view parameter needs to look like an AbstractView 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(view = nil, options = {}) ⇒ FlyTo

Returns a new instance of FlyTo.



1760
1761
1762
1763
1764
1765
# File 'lib/kamelopard/classes.rb', line 1760

def initialize(view = nil, options = {})
    @duration = 0
    @mode = Kamelopard::DocumentHolder.instance.current_document.flyto_mode
    super options
    self.view= view unless view.nil?
end

Instance Attribute Details

#durationObject

Returns the value of attribute duration.



1758
1759
1760
# File 'lib/kamelopard/classes.rb', line 1758

def duration
  @duration
end

#modeObject

Returns the value of attribute mode.



1758
1759
1760
# File 'lib/kamelopard/classes.rb', line 1758

def mode
  @mode
end

#viewObject

Returns the value of attribute view.



1758
1759
1760
# File 'lib/kamelopard/classes.rb', line 1758

def view
  @view
end

Instance Method Details

#range=(range) ⇒ Object



1777
1778
1779
1780
1781
# File 'lib/kamelopard/classes.rb', line 1777

def range=(range)
    if view.respond_to? 'range' and not range.nil? then
        @view.range = range
    end
end

#to_kml(elem = nil) ⇒ Object



1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
# File 'lib/kamelopard/classes.rb', line 1783

def to_kml(elem = nil)
    k = XML::Node.new 'gx:FlyTo'
    super k

    #k.namespaces.namespace = XML::Namespaces.new(k, 'gx', 'http://www.google.com/kml/ext/2.2')
    Kamelopard.kml_array(k, [
        [ @duration, 'gx:duration' ],
        [ @mode, 'gx:flyToMode' ]
    ])
    @view.to_kml k unless @view.nil?
    elem << k unless elem.nil?
    k
end