dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Interfaces

IGeolocationCoordinates Interface

Interface for GeolocationCoordinates

public interface IGeolocationCoordinates

Properties

IGeolocationCoordinates.Accuracy Property

The accuracy attribute denotes the accuracy level of the latitude and longitude coordinates in meters (e.g., 65 meters).

double Accuracy { get; }

Property Value

System.Double

IGeolocationCoordinates.Altitude Property

The altitude attribute denotes the height of the position, specified in meters above the [WGS84] ellipsoid.

System.Nullable<double> Altitude { get; }

Property Value

System.Nullable<System.Double>

IGeolocationCoordinates.AltitudeAccuracy Property

The altitudeAccuracy attribute represents the altitude accuracy in meters (e.g., 10 meters).

System.Nullable<double> AltitudeAccuracy { get; }

Property Value

System.Nullable<System.Double>

IGeolocationCoordinates.Heading Property

The heading attribute denotes the direction of travel of the hosting device and is specified in degrees, where 0° ≤ heading < 360°, counting clockwise relative to the true north.

System.Nullable<double> Heading { get; }

Property Value

System.Nullable<System.Double>

IGeolocationCoordinates.Latitude Property

Latitude specified in decimal degrees.

double Latitude { get; }

Property Value

System.Double

IGeolocationCoordinates.Longitude Property

Longitude specified in decimal degrees.

double Longitude { get; }

Property Value

System.Double

IGeolocationCoordinates.Speed Property

The speed attribute denotes the magnitude of the horizontal component of the hosting device's current velocity in meters per second.

System.Nullable<double> Speed { get; }

Property Value

System.Nullable<System.Double>