Class Coordinates

java.lang.Object
com.jbstrap.jbmap.Coordinates

public class Coordinates extends Object
Longitude and latitude coordinates.
  • Constructor Details

    • Coordinates

      public Coordinates(double longitude, double latitude)
      Creates a coordinate by specifying a longitude and a latitude value.
      Parameters:
      longitude - Longitude
      latitude - Latitude
  • Method Details

    • getLongitude

      public double getLongitude()
      Gets the coordinate's longitude value.
      Returns:
      Longitude value
    • setLongitude

      public Coordinates setLongitude(double longitude)
      Sets the coordinate's longitude value.
      Parameters:
      longitude - Longitude value
    • getLatitude

      public double getLatitude()
      Gets the coordinate's latitude value.
      Returns:
      Latitude value
    • setLatitude

      public Coordinates setLatitude(double latitude)
      Sets the latitude value of the coordinate.
      Parameters:
      latitude - Latitude value
    • getAsList

      public List<Double> 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