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.



1656
1657
1658
1659
1660
1661
# File 'lib/kamelopard/classes.rb', line 1656

def initialize(view = nil, options = {})
    @duration = 0
    @mode = :bounce
    super options
    self.view= view unless view.nil?
end

Instance Attribute Details

#durationObject

Returns the value of attribute duration.



1654
1655
1656
# File 'lib/kamelopard/classes.rb', line 1654

def duration
  @duration
end

#modeObject

Returns the value of attribute mode.



1654
1655
1656
# File 'lib/kamelopard/classes.rb', line 1654

def mode
  @mode
end

#viewObject

Returns the value of attribute view.



1654
1655
1656
# File 'lib/kamelopard/classes.rb', line 1654

def view
  @view
end

Instance Method Details

#range=(range) ⇒ Object



1673
1674
1675
1676
1677
# File 'lib/kamelopard/classes.rb', line 1673

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

#to_kml(elem = nil) ⇒ Object



1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
# File 'lib/kamelopard/classes.rb', line 1679

def to_kml(elem = nil)
    k = XML::Node.new 'gx:FlyTo'
    super k
    Kamelopard.kml_array(k, [
        [ @duration, 'gx:duration' ],
        [ @mode, 'gx:flyToMode' ]
    ])
    @view.to_kml k unless @view.nil?
    elem << k unless elem.nil?
    k
end