Package com.jbstrap.jbmap
Class Coordinates
java.lang.Object
com.jbstrap.jbmap.Coordinates
Longitude and latitude coordinates.
-
Constructor Summary
ConstructorDescriptionCoordinates
(double longitude, double latitude) Creates a coordinate by specifying a longitude and a latitude value. -
Method Summary
Modifier and TypeMethodDescriptionGets a list of coordinates.double
Gets the coordinate's latitude value.double
Gets the coordinate's longitude value.setLatitude
(double latitude) Sets the latitude value of the coordinate.setLongitude
(double longitude) Sets the coordinate's longitude value.
-
Constructor Details
-
Coordinates
public Coordinates(double longitude, double latitude) Creates a coordinate by specifying a longitude and a latitude value.- Parameters:
longitude
- Longitudelatitude
- Latitude
-
-
Method Details
-
getLongitude
public double getLongitude()Gets the coordinate's longitude value.- Returns:
- Longitude value
-
setLongitude
Sets the coordinate's longitude value.- Parameters:
longitude
- Longitude value
-
getLatitude
public double getLatitude()Gets the coordinate's latitude value.- Returns:
- Latitude value
-
setLatitude
Sets the latitude value of the coordinate.- Parameters:
latitude
- Latitude value
-
getAsList
Gets a list of coordinates. The first item is the longitude and the second item is the latitude value.- Returns:
- A list containing longitude and latitude values
-