Package com.microstrategy.web.app.maps
Class BoundingBox
- java.lang.Object
-
- com.microstrategy.web.app.maps.BoundingBox
-
public class BoundingBox extends java.lang.ObjectThe bounding box object represents the rectangle object that covers the boundary of the geo object. The bounding box values are in the Cartesian coordinate system. You cannot set latitude and longitude values to the bounding box. The lat and lng value must be projected before using the bounding box object.
-
-
Constructor Summary
Constructors Constructor Description BoundingBox(double minX, double minY, double maxX, double maxY)BoundingBox(java.lang.String minX, java.lang.String minY, java.lang.String maxX, java.lang.String maxY)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetMaxX()doublegetMaxY()doublegetMinX()doublegetMinY()booleanintersectWith(BoundingBox box)
-
-
-
Method Detail
-
intersectWith
public boolean intersectWith(BoundingBox box)
-
getMinX
public double getMinX()
-
getMinY
public double getMinY()
-
getMaxX
public double getMaxX()
-
getMaxY
public double getMaxY()
-
-