Show / Hide Table of Contents

Class Post.LocationData

The location for geotagged posts.

Inheritance
System.Object
Post.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.Blogger.v3.Data
Assembly: Google.Apis.Blogger.v3.dll
Syntax
public class LocationData

Properties

Lat

Location's latitude.

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

Lng

Location's longitude.

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

Name

Location name.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

Span

Location's viewport span. Can be used when rendering a map preview.

Declaration
[JsonProperty("span")]
public virtual string Span { get; set; }
Property Value
Type Description
System.String
Back to top