WARNING: Version 5.x has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Geo Shape Geometry Collection Query Usage
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Geo Shape Geometry Collection Query Usage
editFluent DSL example
editq
.GeoShapeGeometryCollection(c => c
.Name("named_query")
.Boost(1.1)
.Field(p => p.Location)
.Geometries(
new PointGeoShape(_pointCoordinates),
new MultiPointGeoShape(_multiPointCoordinates),
new LineStringGeoShape(_lineStringCoordinates),
new MultiLineStringGeoShape(_multiLineStringCoordinates),
new PolygonGeoShape(_polygonCoordinates),
new MultiPolygonGeoShape(_multiPolygonCoordinates)
)
.Relation(GeoShapeRelation.Intersects)
.IgnoreUnmapped()
)
Object Initializer syntax example
editnew GeoShapeGeometryCollectionQuery
{
Name = "named_query",
Boost = 1.1,
Field = Infer.Field<Project>(p => p.Location),
Shape = new Nest.GeometryCollection
{
Geometries = new IGeoShape[]
{
new PointGeoShape(_pointCoordinates),
new MultiPointGeoShape(_multiPointCoordinates),
new LineStringGeoShape(_lineStringCoordinates),
new MultiLineStringGeoShape(_multiLineStringCoordinates),
new PolygonGeoShape(_polygonCoordinates),
new MultiPolygonGeoShape(_multiPolygonCoordinates),
}
},
Relation = GeoShapeRelation.Intersects,
IgnoreUnmapped = false
}