Position Struct

Definition

A struct that has a latitude and longitude, stored as doubles.

public struct Position
type Position = struct
Inheritance
System.ValueType
Position

Constructors

Name Description
Position(Double, Double)

Constructs a new Position structure with a given latitude and longitude.

Properties

Name Description
Latitude

Gets the latitude of this position in decimal degrees.

Longitude

Gets the longitude of this position in decimal degrees.

Methods

Name Description
Equals(Object)

Returns a Boolean value that indicates whether or not obj is another Position structure and represents exactly the same latitude and longitude as this one.

GetHashCode()

Returns the hash code for this instance.

Operators

Name Description
Equality(Position, Position)

Returns a Boolean value that indicates whether or not left represents exactly the same latitude and longitude as right.

Inequality(Position, Position)

Returns a Boolean value that indicates whether or not left and right represent different latitudes or longitudes.

Applies to