Class: Kamelopard::NetworkLink
- Defined in:
- lib/kamelopard/classes.rb
Overview
Analogue of KML’s NetworkLink class
Instance Attribute Summary collapse
-
#flyToView ⇒ Object
Returns the value of attribute flyToView.
-
#link ⇒ Object
Returns the value of attribute link.
-
#refreshVisibility ⇒ Object
Returns the value of attribute refreshVisibility.
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
Attributes inherited from Object
#comment, #kml_id, #master_only
Instance Method Summary collapse
- #href ⇒ Object
- #href=(a) ⇒ Object
-
#initialize(href = '', options = {}) ⇒ NetworkLink
constructor
A new instance of NetworkLink.
- #refreshMode ⇒ Object
- #refreshMode=(a) ⇒ Object
- #to_kml(elem = nil) ⇒ Object
- #viewRefreshMode ⇒ Object
- #viewRefreshMode=(a) ⇒ Object
Methods inherited from Feature
add_author, #extended_data_to_kml, #hide, #show, #styles_to_kml, #timespan, #timespan=, #timestamp, #timestamp=
Methods included from Snippet
Methods inherited from Object
#_alternate_to_kml, #change, #master_only?, parse
Constructor Details
#initialize(href = '', options = {}) ⇒ NetworkLink
Returns a new instance of NetworkLink.
2556 2557 2558 2559 2560 2561 2562 2563 |
# File 'lib/kamelopard/classes.rb', line 2556 def initialize(href = '', = {}) super(( [:name] || ''), ) @refreshMode ||= :onChange @viewRefreshMode ||= :never @link = Link.new(href, :refreshMode => @refreshMode, :viewRefreshMode => @viewRefreshMode) @refreshVisibility ||= 0 @flyToView ||= 0 end |
Instance Attribute Details
#flyToView ⇒ Object
Returns the value of attribute flyToView.
2554 2555 2556 |
# File 'lib/kamelopard/classes.rb', line 2554 def flyToView @flyToView end |
#link ⇒ Object
Returns the value of attribute link.
2554 2555 2556 |
# File 'lib/kamelopard/classes.rb', line 2554 def link @link end |
#refreshVisibility ⇒ Object
Returns the value of attribute refreshVisibility.
2554 2555 2556 |
# File 'lib/kamelopard/classes.rb', line 2554 def refreshVisibility @refreshVisibility end |
Instance Method Details
#href ⇒ Object
2573 2574 2575 |
# File 'lib/kamelopard/classes.rb', line 2573 def href link.href end |
#href=(a) ⇒ Object
2585 2586 2587 |
# File 'lib/kamelopard/classes.rb', line 2585 def href=(a) link.href = a end |
#refreshMode ⇒ Object
2565 2566 2567 |
# File 'lib/kamelopard/classes.rb', line 2565 def refreshMode link.refreshMode end |
#refreshMode=(a) ⇒ Object
2577 2578 2579 |
# File 'lib/kamelopard/classes.rb', line 2577 def refreshMode=(a) link.refreshMode = a end |
#to_kml(elem = nil) ⇒ Object
2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 |
# File 'lib/kamelopard/classes.rb', line 2589 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 |
#viewRefreshMode ⇒ Object
2569 2570 2571 |
# File 'lib/kamelopard/classes.rb', line 2569 def viewRefreshMode link.viewRefreshMode end |
#viewRefreshMode=(a) ⇒ Object
2581 2582 2583 |
# File 'lib/kamelopard/classes.rb', line 2581 def viewRefreshMode=(a) link.viewRefreshMode = a end |