Class: Kamelopard::NetworkLink

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

Overview

Analogue of KML’s NetworkLink class

Instance Attribute Summary collapse

Attributes inherited from Feature

#abstractView, #addressDetails, #atom_author, #atom_link, #description, #extendedData, #metadata, #name, #open, #phoneNumber, #region, #snippet, #styleSelector, #styleUrl, #styles, #timeprimitive, #visibility

Attributes included from Snippet

#maxLines, #snippet_text

Attributes inherited from Object

#comment, #kml_id, #master_only

Instance Method Summary collapse

Methods inherited from Feature

add_author, #extended_data_to_kml, #hide, #show, #styles_to_kml, #timespan, #timespan=, #timestamp, #timestamp=

Methods included from Snippet

#snippet_to_kml

Methods inherited from Object

#_alternate_to_kml, #change, #master_only?, parse

Constructor Details

#initialize(href = '', options = {}) ⇒ NetworkLink

Returns a new instance of NetworkLink.



2494
2495
2496
2497
2498
2499
2500
2501
# File 'lib/kamelopard/classes.rb', line 2494

def initialize(href = '', options = {})
    super(( options[:name] || ''), options)
    @refreshMode ||= :onChange
    @viewRefreshMode ||= :never
    @link = Link.new(href, :refreshMode => @refreshMode, :viewRefreshMode => @viewRefreshMode)
    @refreshVisibility ||= 0
    @flyToView ||= 0
end

Instance Attribute Details

#flyToViewObject

Returns the value of attribute flyToView.



2492
2493
2494
# File 'lib/kamelopard/classes.rb', line 2492

def flyToView
  @flyToView
end

Returns the value of attribute link.



2492
2493
2494
# File 'lib/kamelopard/classes.rb', line 2492

def link
  @link
end

#refreshVisibilityObject

Returns the value of attribute refreshVisibility.



2492
2493
2494
# File 'lib/kamelopard/classes.rb', line 2492

def refreshVisibility
  @refreshVisibility
end

Instance Method Details

#hrefObject



2511
2512
2513
# File 'lib/kamelopard/classes.rb', line 2511

def href
    link.href
end

#href=(a) ⇒ Object



2523
2524
2525
# File 'lib/kamelopard/classes.rb', line 2523

def href=(a)
    link.href = a
end

#refreshModeObject



2503
2504
2505
# File 'lib/kamelopard/classes.rb', line 2503

def refreshMode
    link.refreshMode
end

#refreshMode=(a) ⇒ Object



2515
2516
2517
# File 'lib/kamelopard/classes.rb', line 2515

def refreshMode=(a)
    link.refreshMode = a
end

#to_kml(elem = nil) ⇒ Object



2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
# File 'lib/kamelopard/classes.rb', line 2527

def to_kml(elem = nil)
    e = XML::Node.new 'NetworkLink'
    super e
    @link.to_kml e
    Kamelopard.kml_array(e, [
        [@flyToView, 'flyToView'],
        [@refreshVisibility, 'refreshVisibility']
    ])
    elem << e unless elem.nil?
    e
end

#viewRefreshModeObject



2507
2508
2509
# File 'lib/kamelopard/classes.rb', line 2507

def viewRefreshMode
    link.viewRefreshMode
end

#viewRefreshMode=(a) ⇒ Object



2519
2520
2521
# File 'lib/kamelopard/classes.rb', line 2519

def viewRefreshMode=(a)
    link.viewRefreshMode = a
end