Show / Hide Table of Contents

Class GeoPoint

Geographical coordinates of a point, in WGS84.

Inheritance
System.Object
GeoPoint
Implements
IDirectResponseSchema
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.YouTube.v3.Data
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class GeoPoint : IDirectResponseSchema

Properties

Altitude

Altitude above the reference ellipsoid, in meters.

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

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Latitude

Latitude in degrees.

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

Longitude

Longitude in degrees.

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

Implements

IDirectResponseSchema
Back to top