C# 클래스 DataInterop.GeographicPosition

Defines the Geographic Position type a.k.a. Geographic Coordinate Reference System.
상속: Position
파일 보기 프로젝트 열기: DigitalGlobe/DGConnect-ESRI 1 사용 예제들

Private Properties

프로퍼티 타입 설명
GeographicPosition System

공개 메소드들

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

Determines whether the specified System.Object, is equal to this instance.

GeographicPosition ( double latitude, double longitude, double altitude = null ) : System

Initializes a new instance of the GeographicPosition class.

GeographicPosition ( string latitude, string longitude, string altitude = null ) : System

Initializes a new instance of the GeographicPosition class.

GetHashCode ( ) : int

Returns a hash code for this instance.

ToString ( ) : string

Returns a System.String that represents this instance.

operator ( ) : bool

Implements the operator !=.

보호된 메소드들

메소드 설명
Equals ( GeographicPosition other ) : bool

Determines whether the specified GeographicPosition, is equal to this instance.

비공개 메소드들

메소드 설명
GeographicPosition ( ) : System

Prevents a default instance of the GeographicPosition class from being created.

메소드 상세

Equals() 보호된 메소드

Determines whether the specified GeographicPosition, is equal to this instance.
protected Equals ( GeographicPosition other ) : bool
other GeographicPosition The to compare with this instance.
리턴 bool

Equals() 공개 메소드

Determines whether the specified System.Object, is equal to this instance.
public Equals ( object obj ) : bool
obj object The to compare with this instance.
리턴 bool

GeographicPosition() 공개 메소드

Initializes a new instance of the GeographicPosition class.
public GeographicPosition ( double latitude, double longitude, double altitude = null ) : System
latitude double The latitude.
longitude double The longitude.
altitude double The altitude in m(eter).
리턴 System

GeographicPosition() 공개 메소드

Initializes a new instance of the GeographicPosition class.
public GeographicPosition ( string latitude, string longitude, string altitude = null ) : System
latitude string The latitude, e.g. '38.889722'.
longitude string The longitude, e.g. '-77.008889'.
altitude string The altitude in m(eters).
리턴 System

GetHashCode() 공개 메소드

Returns a hash code for this instance.
public GetHashCode ( ) : int
리턴 int

ToString() 공개 메소드

Returns a System.String that represents this instance.
public ToString ( ) : string
리턴 string

operator() 공개 정적인 메소드

Implements the operator !=.
public static operator ( ) : bool
리턴 bool