CoordinatePart(Double, CoordinateType) Constructor
Creates a populated CoordinatePart from a signed degree value.
Namespace: CoordinateSharpAssembly: CoordinateSharp (in CoordinateSharp.dll) Version: 3.1.1.1
XMLNS for XAML: Not mapped to an xmlns.
public CoordinatePart(
double value,
CoordinateType cType
)
Parameters
- value Double
- Coordinate part signed value
- cType CoordinateType
- Coordinate part type
The following example creates a populated latitudinal coordinate part from a signed value and assigns it to a Coordinate object.
//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;