Show / Hide Table of Contents

Class Place.PositionData

The position of the place.

Inheritance
System.Object
Place.PositionData
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.Plus.v1.Data
Assembly: Google.Apis.Plus.v1.dll
Syntax
public class PositionData

Properties

Latitude

The latitude of this position.

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

Longitude

The longitude of this position.

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