Example usage for org.springframework.data.geo Point getX

List of usage examples for org.springframework.data.geo Point getX

Introduction

In this page you can find the example usage for org.springframework.data.geo Point getX.

Prototype

public double getX() 

Source Link

Document

Returns the x-coordinate of the Point .

Usage

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());
}