GeoBlazor Pro
layout: pro title: GeoLocationCoordinates parent: Pro Classes grand_parent: GeoBlazor Pro —
dymaptic.GeoBlazor.Pro
dymaptic.GeoBlazor.Pro.Components.Widgets
GeoLocationCoordinates Class
public class GeoLocationCoordinates :
System.IEquatable<dymaptic.GeoBlazor.Pro.Components.Widgets.GeoLocationCoordinates>
Inheritance System.Object 🡒 GeoLocationCoordinates
Implements System.IEquatable<GeoLocationCoordinates>
Constructors
GeoLocationCoordinates(double, double, double, Nullable, Nullable, Nullable, Nullable) Constructor
public GeoLocationCoordinates(double Accuracy, double Latitude, double Longitude, System.Nullable<double> Altitude, System.Nullable<double> AltitudeAccuracy, System.Nullable<double> Heading, System.Nullable<double> Speed);
Parameters
Accuracy
System.Double
The accuracy attribute denotes the accuracy level of the latitude and longitude coordinates in meters (e.g., 65 meters).
Latitude
System.Double
Latitude specified in decimal degrees.
Longitude
System.Double
Longitude specified in decimal degrees.
Altitude
System.Nullable<System.Double>
The altitude attribute denotes the height of the position, specified in meters above the [WGS84] ellipsoid.
AltitudeAccuracy
System.Nullable<System.Double>
The altitudeAccuracy attribute represents the altitude accuracy in meters (e.g., 10 meters).
Heading
System.Nullable<System.Double>
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.
Speed
System.Nullable<System.Double>
The speed attribute denotes the magnitude of the horizontal component of the hosting device’s current velocity in meters per second.
Properties
GeoLocationCoordinates.Accuracy Property
The accuracy attribute denotes the accuracy level of the latitude and longitude coordinates in meters (e.g., 65 meters).
public double Accuracy { get; set; }
Property Value
GeoLocationCoordinates.Altitude Property
The altitude attribute denotes the height of the position, specified in meters above the [WGS84] ellipsoid.
public System.Nullable<double> Altitude { get; set; }
Property Value
System.Nullable<System.Double>
GeoLocationCoordinates.AltitudeAccuracy Property
The altitudeAccuracy attribute represents the altitude accuracy in meters (e.g., 10 meters).
public System.Nullable<double> AltitudeAccuracy { get; set; }
Property Value
System.Nullable<System.Double>
GeoLocationCoordinates.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.
public System.Nullable<double> Heading { get; set; }
Property Value
System.Nullable<System.Double>
GeoLocationCoordinates.Latitude Property
Latitude specified in decimal degrees.
public double Latitude { get; set; }
Property Value
GeoLocationCoordinates.Longitude Property
Longitude specified in decimal degrees.
public double Longitude { get; set; }
Property Value
GeoLocationCoordinates.Speed Property
The speed attribute denotes the magnitude of the horizontal component of the hosting device’s current velocity in meters per second.
public System.Nullable<double> Speed { get; set; }