/src/com/google/maps/extras/xmlparsers/kml/LineStyle.as
http://gmaps-utility-library-flash.googlecode.com/ · ActionScript · 24 lines · 16 code · 5 blank · 3 comment · 0 complexity · eaa2d3d69c775e0261deec9e1133234f MD5 · raw file
- /* Added by Cecil M. Reid (cmR)
- * cecilmreid@gmail.com
- */
-
- package com.google.maps.extras.xmlparsers.kml
- {
- import com.google.maps.extras.xmlparsers.ParsingTools;
-
- public class LineStyle extends ColorStyle
- {
- private var _width:Number;
-
- public function LineStyle(x:XMLList)
- {
- super(x);
- this._width = ParsingTools.nanCheck(this.x.kml::width);
- }
-
- public function get width():Number{
- return this._width;
- }
-
- }
- }