Interface IAdvancedMobileLocation
- Namespace
- XENBIT.ResQueServe.Abstractions.Interfaces
- Assembly
- RQS.Abstractions.dll
public interface IAdvancedMobileLocation
Properties
Accuracy
Accuracy of the location in meters.
double? Accuracy { get; init; }
Property Value
Altitude
Altitude of the location in meters.
double? Altitude { get; init; }
Property Value
Latitude
Latitude of the location.
double? Latitude { get; init; }
Property Value
LocationTime
Time when the location was recorded.
DateTimeOffset? LocationTime { get; init; }
Property Value
Longitude
Longitude of the location.
double? Longitude { get; init; }
Property Value
Source
Source of the location information (e.g., GPS, WiFi).
string? Source { get; init; }
Property Value
Status
Status of the location data (e.g., ok).
string? Status { get; init; }
Property Value
VerticalAccuracy
Vertical accuracy of the location in meters.
double? VerticalAccuracy { get; init; }