Update GeoJsonPoint Javadoc.

Mention x -> longitude, y -> latitude relation.

Closes: #3956
This commit is contained in:
sangyongchoi
2022-02-09 00:13:32 +09:00
committed by Christoph Strobl
parent 90b8ba7246
commit 2a3f746cb6

View File

@@ -36,8 +36,8 @@ public class GeoJsonPoint extends Point implements GeoJson<List<Double>> {
/** /**
* Creates {@link GeoJsonPoint} for given coordinates. * Creates {@link GeoJsonPoint} for given coordinates.
* *
* @param x * @param x : longitude
* @param y * @param y : latitude
*/ */
public GeoJsonPoint(double x, double y) { public GeoJsonPoint(double x, double y) {
super(x, y); super(x, y);