ParseGeoPoint StructureParse
ParseGeoPoint represents a latitude / longitude point that may be associated with a key in a ParseObject or used as a reference point for geo queries. This allows proximity-based queries on the key. Only one key in a class may contain a GeoPoint.

Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public struct ParseGeoPoint

The ParseGeoPoint type exposes the following members.

Constructors

  NameDescription
Public methodParseGeoPoint
Constructs a ParseGeoPoint with the specified latitude and longitude.
Top
Properties

  NameDescription
Public propertyLatitude
Gets or sets the latitude of the GeoPoint. Valid range is [-90, 90]. Extremes should not be used.
Public propertyLongitude
Gets or sets the longitude. Valid range is [-180, 180]. Extremes should not be used.
Top
Methods

  NameDescription
Public methodDistanceTo
Get the distance in radians between this point and another GeoPoint. This is the smallest angular distance between the two points.
Public methodEquals
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from ValueType.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
See Also

Reference