Class LLRect
- java.lang.Object
-
- org.apache.lucene.spatial.geometry.shape.LLRect
-
@Deprecated public class LLRect extends Object
Deprecated.Lat-long rect. Instances are mutable.NOTE: This API is still in flux and might change in incompatible ways in the next release.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description double
area()
Deprecated.Return the area in units of lat-lng squared.static LLRect
createBox(LatLng center, double widthMi, double heightMi)
Deprecated.Approximates a box centered at the given point with the given width and height in miles.boolean
equals(Object obj)
Deprecated.LatLng
getLowerLeft()
Deprecated.LatLng
getMidpoint()
Deprecated.LatLng
getUpperRight()
Deprecated.int
hashCode()
Deprecated.Rectangle
toRectangle()
Deprecated.Returns a rectangle shape for the bounding boxString
toString()
Deprecated.
-
-
-
Method Detail
-
area
public double area()
Deprecated.Return the area in units of lat-lng squared. This is a contrived unit that only has value when comparing to something else.
-
getLowerLeft
public LatLng getLowerLeft()
Deprecated.
-
getUpperRight
public LatLng getUpperRight()
Deprecated.
-
getMidpoint
public LatLng getMidpoint()
Deprecated.
-
createBox
public static LLRect createBox(LatLng center, double widthMi, double heightMi)
Deprecated.Approximates a box centered at the given point with the given width and height in miles.- Parameters:
center
-widthMi
-heightMi
-
-
toRectangle
public Rectangle toRectangle()
Deprecated.Returns a rectangle shape for the bounding box
-
-