
nl.pvanassen.geckoboard.api.json.map.LatLonPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geckoboard-api Show documentation
Show all versions of geckoboard-api Show documentation
A Java API to generate highchart json on the server side.
The newest version!
package nl.pvanassen.geckoboard.api.json.map;
/**
* A point on the map based on GPS coordinates (latitude and longitude)
*
* @author Paul van Assen
*/
public class LatLonPoint extends AbstractPoint {
@SuppressWarnings("unused")
private final String latitude;
@SuppressWarnings("unused")
private final String longitude;
/**
* Constructor for lat lon point specifying the coordinates
*
* @param latitude GPS Latitude
* @param longitude GPS Longitude
*/
public LatLonPoint(String latitude, String longitude) {
super();
this.latitude = latitude;
this.longitude = longitude;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy