Show / Hide Table of Contents

Class Geolayerdata.GeoData

Inheritance
System.Object
Geolayerdata.GeoData
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.Books.v1.Data
Assembly: Google.Apis.Books.v1.dll
Syntax
public class GeoData

Properties

Boundary

The boundary of the location as a set of loops containing pairs of latitude, longitude coordinates.

Declaration
[JsonProperty("boundary")]
public virtual IList<string> Boundary { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

CachePolicy

The cache policy active for this data. EX: UNRESTRICTED, RESTRICTED, NEVER

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

CountryCode

The country code of the location.

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

Latitude

The latitude of the location.

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

Longitude

The longitude of the location.

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

MapType

The type of map that should be used for this location. EX: HYBRID, ROADMAP, SATELLITE, TERRAIN

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

Viewport

The viewport for showing this location. This is a latitude, longitude rectangle.

Declaration
[JsonProperty("viewport")]
public virtual Geolayerdata.GeoData.ViewportData Viewport { get; set; }
Property Value
Type Description
Geolayerdata.GeoData.ViewportData

Zoom

The Zoom level to use for the map. Zoom levels between 0 (the lowest zoom level, in which the entire world can be seen on one map) to 21+ (down to individual buildings). See: https: //developers.google.com/maps/documentation/staticmaps/#Zoomlevels

Declaration
[JsonProperty("zoom")]
public virtual int? Zoom { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
In This Article
Back to top