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 Line String Query Usage
editGeo Shape Line String Query Usage
editFluent DSL example
editq .GeoShapeLineString(c => c .Name("named_query") .Boost(1.1) .Field(p => p.Location) .Coordinates(_coordinates) .Relation(GeoShapeRelation.Intersects) .IgnoreUnmapped() )
Object Initializer syntax example
editnew GeoShapeLineStringQuery { Name = "named_query", Boost = 1.1, Field = Field<Project>(p => p.Location), Shape = new LineStringGeoShape(_coordinates), Relation = GeoShapeRelation.Intersects, IgnoreUnmapped = false }