CoordinatePart(Double, CoordinateType) Constructor

Creates a populated CoordinatePart from a signed degree value.

Definition

Namespace: CoordinateSharp
Assembly: CoordinateSharp (in CoordinateSharp.dll) Version: 2.21.1.1
XMLNS for XAML: Not mapped to an xmlns.
C#
public CoordinatePart(
	double value,
	CoordinateType cType
)

Parameters

value  Double
Coordinate part signed value
cType  CoordinateType
Coordinate part type

Example

The following example creates a populated latitudinal coordinate part from a signed value and assigns it to a Coordinate object.
C#
//Create a new default coordinate
Coordinate c = new Coordinate();

//Create a coordinate part using a the signed latitude 25.6°.
CoordinatePart cp = new CoordinatePart(25.6, CoordinateType.Lat);

//Assign the latitudinal value to the coordinate.
c.Latitude = cp;

See Also