Package eu.webtoolkit.jwt
Class WLeafletMap.Coordinate
- java.lang.Object
-
- eu.webtoolkit.jwt.WLeafletMap.Coordinate
-
- Enclosing class:
- WLeafletMap
public static class WLeafletMap.Coordinate extends java.lang.ObjectA geographical coordinate (latitude/longitude)
-
-
Constructor Summary
Constructors Constructor Description Coordinate()Default constructor.Coordinate(double latitude, double longitude)Create a coordinate (latitude, longitude)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(WLeafletMap.Coordinate other)Equality comparison operator.doublegetLatitude()Get the latitude.doublegetLongitude()Get the longitude.voidsetLatitude(double latitude)Set the latitude.voidsetLongitude(double longitude)Set the longitude.
-
-
-
Method Detail
-
setLatitude
public void setLatitude(double latitude)
Set the latitude.
-
getLatitude
public double getLatitude()
Get the latitude.
-
setLongitude
public void setLongitude(double longitude)
Set the longitude.
-
getLongitude
public double getLongitude()
Get the longitude.
-
equals
public boolean equals(WLeafletMap.Coordinate other)
Equality comparison operator.
-
-