Interface IGraphOutlookGeoCoordinates
The geographic coordinates, elevation, and their degree of accuracy for a physical location.
Inherited Members
Namespace: PnP.Core.Model.Teams
Assembly: PnP.Core.dll
Syntax
public interface IGraphOutlookGeoCoordinates : IDataModel<IGraphOutlookGeoCoordinates>, IDataModelParent, IDataModelWithContext, ISupportModules<IGraphOutlookGeoCoordinates>
Properties
Accuracy
The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters.
Declaration
double Accuracy { get; }
Property Value
System.Double
|
Altitude
The altitude of the location.
Declaration
double Altitude { get; }
Property Value
System.Double
|
AltitudeAccuracy
The accuracy of the altitude.
Declaration
double AltitudeAccuracy { get; set; }
Property Value
System.Double
|
Latitude
The latitude of the location.
Declaration
double Latitude { get; set; }
Property Value
System.Double
|
Longitude
The longitude of the location.
Declaration
double Longitude { get; set; }
Property Value
System.Double
|