Uses of Class
org.apache.lucene.geo.Polygon
-
Packages that use Polygon Package Description org.apache.lucene.document org.apache.lucene.geo org.elasticsearch.index.mapper -
-
Uses of Polygon in org.apache.lucene.document
Methods in org.apache.lucene.document with parameters of type Polygon Modifier and Type Method Description static Field[]LatLonShape. createIndexableFields(String fieldName, Polygon polygon)create indexable fields for polygon geometrystatic QueryLatLonPoint. newPolygonQuery(String field, Polygon... polygons)Create a query for matching one or more polygons.static QueryLatLonShape. newPolygonQuery(String field, ShapeField.QueryRelation queryRelation, Polygon... polygons)create a query to find all indexed geo shapes that intersect a provided polygon (or array of polygons) note: does not support dateline crossingstatic QueryLatLonDocValuesField. newSlowPolygonQuery(String field, Polygon... polygons)Create a query for matching points within the supplied polygons. -
Uses of Polygon in org.apache.lucene.geo
Methods in org.apache.lucene.geo that return Polygon Modifier and Type Method Description static Polygon[]Polygon. fromGeoJSON(String geojson)Parses a standard GeoJSON polygon string.Polygon[]Polygon. getHoles()Returns a copy of the internal holes arrayMethods in org.apache.lucene.geo with parameters of type Polygon Modifier and Type Method Description static Component2DPolygon2D. create(Polygon... polygons)Builds a Polygon2D from multipolygonstatic RectangleRectangle. fromPolygon(Polygon[] polygons)Returns the bounding box over an array of polygonsstatic List<Tessellator.Triangle>Tessellator. tessellate(Polygon polygon)Constructors in org.apache.lucene.geo with parameters of type Polygon Constructor Description Polygon(double[] polyLats, double[] polyLons, Polygon... holes)Creates a new Polygon from the supplied latitude/longitude array, and optionally any holes.Polygon2D(Polygon polygon, Component2D holes) -
Uses of Polygon in org.elasticsearch.index.mapper
Methods in org.elasticsearch.index.mapper that return Polygon Modifier and Type Method Description static PolygonGeoShapeIndexer. toLucenePolygon(Polygon polygon)
-