Coordinate(Double, Double, DateTime) Constructor

Creates a populated Coordinate object with an assigned GeoDate.

Definition

Namespace: CoordinateSharp
Assembly: CoordinateSharp (in CoordinateSharp.dll) Version: 2.21.1.1
XMLNS for XAML: Not mapped to an xmlns.
C#
public Coordinate(
	double lat,
	double longi,
	DateTime date
)

Parameters

lat  Double
signed latitude
longi  Double
signed longitude
date  DateTime
DateTime (UTC)

Remarks

All properties will be set to EagerLoaded.

Example

The following example demonstrates how to create a defined Coordinate object with a defined GeoDate.
C#
Coordinate c = new Coordinate(25, 25, new DateTime(2018, 2, 5, 10, 38, 22));

See Also