Show / Hide Table of Contents

Class File.ImageMediaMetadataData.LocationData

Geographic location information stored in the image.

Inheritance
System.Object
File.ImageMediaMetadataData.LocationData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Drive.v3.Data
Assembly: Google.Apis.Drive.v3.dll
Syntax
public class LocationData

Properties

Altitude

The altitude stored in the image.

Declaration
[JsonProperty("altitude")]
public virtual double? Altitude { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Latitude

The latitude stored in the image.

Declaration
[JsonProperty("latitude")]
public virtual double? Latitude { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Longitude

The longitude stored in the image.

Declaration
[JsonProperty("longitude")]
public virtual double? Longitude { get; set; }
Property Value
Type Description
System.Nullable<System.Double>
Back to top