ParseGeoPoint.set constructor
Creates a new point with the specified latitude and longitude.
Implementation
ParseGeoPoint.set(double latitude, double longitude) {
this.latitude = latitude;
this.longitude = longitude;
}
Creates a new point with the specified latitude and longitude.
ParseGeoPoint.set(double latitude, double longitude) {
this.latitude = latitude;
this.longitude = longitude;
}