using System;
namespace Darnton.Blazor.DeviceInterop.Geolocation
{
///
/// Geolocation Coordinates, based on .
///
public class GeolocationCoordinates
{
///
/// Latitude in decimal degrees.
///
public double Latitude { get; set; }
///
/// Longitude in decimal degrees.
///
public double Longitude { get; set; }
///
/// Altitude in metres, relative to sea level.
///
public double? Altitude { get; set; }
///
/// Accuracy of the latitude and longitude properties, in metres.
///
public double Accuracy { get; set; }
///
/// Accuracy of the altitude, in metres.
///
public double? AltitudeAccuracy { get; set; }
///
/// The direction the device is travelling, in degrees clockwise from true north.
///
public double? Heading { get; set; }
///
/// The velocity of the device, in metres per second.
///
public double? Speed { get; set; }
}
}