Package io.jmix.mapsui.component
Interface GeoMap.Bounds
- Enclosing interface:
- GeoMap
public static interface GeoMap.Bounds
Represents the viewing area of the map.
-
Method Summary
Modifier and TypeMethodDescriptiondouble
getMaxX()
Returns maximum X coordinate of the map's viewport.double
getMaxY()
Returns maximum X coordinate of the map's viewport.double
getMinX()
Returns minimum X coordinate of the map's viewport.double
getMinY()
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.
-