C# Class DataInterop.GeographicPosition

Defines the Geographic Position type a.k.a. Geographic Coordinate Reference System.
Inheritance: Position
Afficher le fichier Open project: DigitalGlobe/DGConnect-ESRI Class Usage Examples

Private Properties

Свойство Type Description
GeographicPosition System

Méthodes publiques

Méthode Description
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 !=.

Méthodes protégées

Méthode Description
Equals ( GeographicPosition other ) : bool

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

Private Methods

Méthode Description
GeographicPosition ( ) : System

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

Method Details

Equals() protected méthode

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

Equals() public méthode

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

GeographicPosition() public méthode

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).
Résultat System

GeographicPosition() public méthode

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).
Résultat System

GetHashCode() public méthode

Returns a hash code for this instance.
public GetHashCode ( ) : int
Résultat int

ToString() public méthode

Returns a System.String that represents this instance.
public ToString ( ) : string
Résultat string

operator() public static méthode

Implements the operator !=.
public static operator ( ) : bool
Résultat bool