Class: Kamelopard::IconStyle

Inherits:
ColorStyle show all
Includes:
Icon
Defined in:
lib/kamelopard/classes.rb

Overview

Corresponds to KML’s IconStyle object.

Instance Attribute Summary collapse

Attributes included from Icon

#h, #href, #httpQuery, #refreshInterval, #refreshMode, #viewBoundScale, #viewFormat, #viewRefreshMode, #viewRefreshTime, #w, #x, #y

Attributes inherited from ColorStyle

#color, #colorMode

Attributes inherited from Object

#comment, #kml_id, #master_only

Instance Method Summary collapse

Methods included from Icon

#icon_to_kml

Methods inherited from ColorStyle

#alpha, #alpha=, #blue, #blue=, #green, #green=, #red, #red=, #validate_colorMode

Methods inherited from Object

#_alternate_to_kml, #change, #master_only?, parse

Constructor Details

#initialize(href = nil, options = {}) ⇒ IconStyle

Returns a new instance of IconStyle.



1345
1346
1347
1348
1349
# File 'lib/kamelopard/classes.rb', line 1345

def initialize(href = nil, options = {})
    @hotspot = XY.new(0.5, 0.5, :fraction, :fraction)
    super nil, options
    @href = href unless href.nil?
end

Instance Attribute Details

#headingObject

Returns the value of attribute heading.



1341
1342
1343
# File 'lib/kamelopard/classes.rb', line 1341

def heading
  @heading
end

#hotspotObject

Returns the value of attribute hotspot.



1341
1342
1343
# File 'lib/kamelopard/classes.rb', line 1341

def hotspot
  @hotspot
end

#scaleObject

Returns the value of attribute scale.



1341
1342
1343
# File 'lib/kamelopard/classes.rb', line 1341

def scale
  @scale
end

Instance Method Details

#hs_x=(a) ⇒ Object



1351
1352
1353
# File 'lib/kamelopard/classes.rb', line 1351

def hs_x=(a)
    @hotspot.x = a
end

#hs_xunits=(a) ⇒ Object



1359
1360
1361
# File 'lib/kamelopard/classes.rb', line 1359

def hs_xunits=(a)
    @hotspot.xunits = a
end

#hs_y=(a) ⇒ Object



1355
1356
1357
# File 'lib/kamelopard/classes.rb', line 1355

def hs_y=(a)
    @hotspot.y = a
end

#hs_yunits=(a) ⇒ Object



1363
1364
1365
# File 'lib/kamelopard/classes.rb', line 1363

def hs_yunits=(a)
    @hotspot.yunits = a
end

#to_kml(elem = nil) ⇒ Object



1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
# File 'lib/kamelopard/classes.rb', line 1367

def to_kml(elem = nil)
    k = XML::Node.new 'IconStyle'
    super(k)
    Kamelopard.kml_array( k, [
        [ @scale, 'scale' ],
        [ @heading, 'heading' ]
    ])
    if not @hotspot.nil? then
        h = XML::Node.new 'hotSpot'
        h.attributes['x'] = @hotspot.x.to_s
        h.attributes['y'] = @hotspot.y.to_s
        h.attributes['xunits'] = @hotspot.xunits.to_s
        h.attributes['yunits'] = @hotspot.yunits.to_s
        k << h
    end
    icon_to_kml(k)
    elem << k unless elem.nil?
    k
end