List of usage examples for org.springframework.data.geo Point getX
public double getX()
From source file:io.leishvl.core.geospatial.GeoJsons.java
public static String lngLat2Human(final Point point) { return point.getY() + "\u00b0" + " N " + point.getX() + "\u00b0" + " W"; }
From source file:example.app.repo.provider.GoogleMapsApiGeocodingRepository.java
protected LatLng toLatitudeLongitude(Point point) { return new LatLng(point.getX(), point.getY()); }