Class LatLng
An object representing a latitude/longitude pair. This is expressed as a pair of doubles representing degrees latitude and degrees longitude. Unless specified otherwise, this must conform to the WGS84 standard. Values must be within normalized ranges.
Inheritance
System.Object
LatLng
Implements
Namespace: Google.Apis.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class LatLng : object, IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Latitude
The latitude in degrees. It must be in the range [-90.0, +90.0].
Declaration
public virtual Nullable<double> Latitude { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Double> |
Longitude
The longitude in degrees. It must be in the range [-180.0, +180.0].
Declaration
public virtual Nullable<double> Longitude { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Double> |