Coordinate(Double, Double, DateTime) Constructor
Creates a populated Coordinate object with an assigned GeoDate.
Namespace: CoordinateSharpAssembly: CoordinateSharp (in CoordinateSharp.dll) Version: 3.1.1.1
XMLNS for XAML: Not mapped to an xmlns.
public Coordinate(
double lat,
double longi,
DateTime date
)
Parameters
- lat Double
- signed latitude
- longi Double
- signed longitude
- date DateTime
- DateTime (UTC)
All properties will be set to EagerLoaded.
The following example demonstrates how to create a defined Coordinate object with a defined GeoDate.
Coordinate c = new Coordinate(25, 25, new DateTime(2018, 2, 5, 10, 38, 22));