C# 클래스 PreStorm.KmlStyle

Represents the KML style.
파일 보기 프로젝트 열기: jshirota/PreStorm 1 사용 예제들

공개 메소드들

메소드 설명
Equals ( object obj ) : bool

Overridden to return the value equality.

GetHashCode ( ) : int

Serves as a hash function for equality comparison.

KmlStyle ( string iconUrl = null, string iconColour = null, double iconScale = 1.1, string lineColour = null, double lineWidth = 1.2, string polygonColour = null )

Initializes a new instance of the KmlStyle class.

메소드 상세

Equals() 공개 메소드

Overridden to return the value equality.
public Equals ( object obj ) : bool
obj object
리턴 bool

GetHashCode() 공개 메소드

Serves as a hash function for equality comparison.
public GetHashCode ( ) : int
리턴 int

KmlStyle() 공개 메소드

Initializes a new instance of the KmlStyle class.
public KmlStyle ( string iconUrl = null, string iconColour = null, double iconScale = 1.1, string lineColour = null, double lineWidth = 1.2, string polygonColour = null )
iconUrl string The url of the icon.
iconColour string The colour of icons. The format conforms to the KML specification (i.e. 7fff0000 where alpha=0x7f, blue=0xff, green=0x00, and red=0x00).
iconScale double The size of icons.
lineColour string The colour of lines. The format conforms to the KML specification (i.e. 7fff0000 where alpha=0x7f, blue=0xff, green=0x00, and red=0x00).
lineWidth double The width of lines. This applies to polygons, too.
polygonColour string The colour of polygons. The format conforms to the KML specification (i.e. 7fff0000 where alpha=0x7f, blue=0xff, green=0x00, and red=0x00).