Interface GeoMap.Bounds

Enclosing interface:
GeoMap

public static interface GeoMap.Bounds
Represents the viewing area of the map.
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Returns maximum X coordinate of the map's viewport.
    double
    Returns maximum X coordinate of the map's viewport.
    double
    Returns minimum X coordinate of the map's viewport.
    double
    Returns minimum Y coordinate of the map's viewport.
    org.locationtech.jts.geom.Point
    Returns geographical point corresponding to the top-right corner of the map.
    org.locationtech.jts.geom.Point
    Returns geographical point corresponding to the bottom-left corner of the map.
  • Method Details

    • getSouthWest

      org.locationtech.jts.geom.Point getSouthWest()
      Returns geographical point corresponding to the bottom-left corner of the map.
    • getNorthEast

      org.locationtech.jts.geom.Point getNorthEast()
      Returns geographical point corresponding to the top-right corner of the map.
    • getMinX

      double getMinX()
      Returns minimum X coordinate of the map's viewport.
    • getMaxX

      double getMaxX()
      Returns maximum X coordinate of the map's viewport.
    • getMinY

      double getMinY()
      Returns minimum Y coordinate of the map's viewport.
    • getMaxY

      double getMaxY()
      Returns maximum X coordinate of the map's viewport.