Index
Constructors
constructor
- 
							Creates a new immutable GeoPoint object with the provided latitude and longitude values. Parameters- 
									latitude: numberThe latitude as number between -90 and 90. 
- 
									longitude: numberThe longitude as number between -180 and 180. 
 Returns GeoPoint
- 
									
Properties
latitude
The latitude of this GeoPoint instance.
longitude
The longitude of this GeoPoint instance.
Methods
isEqual 
					- 
							Returns true if this GeoPointis equal to the provided one.Parameters- 
									other: GeoPointThe GeoPointto compare against.
 Returns booleantrue if this GeoPointis equal to the provided one.
- 
									
An immutable object representing a geo point in Firestore. The geo point is represented as latitude/longitude pair.
Latitude values are in the range of [-90, 90]. Longitude values are in the range of [-180, 180].