Facet spatial
Feature
Create a facet spatial
How to
Configure facet
Optionally, change one or more settings
Read data
Settings
Use case
How to
Sort type of result of facet
.FacetSpatial("AliasName", q => q.StoredAt, new GeoCoordinate(1, 1), 10, facet => facet.SortType = FacetSortType.CountAsc)
Minimum count of itens in facet's result
.FacetSpatial("AliasName", q => q.StoredAt, new GeoCoordinate(1, 1), 10, facet => facet.Minimum = 2)
Limit of itens in facet's result
.FacetSpatial("AliasName", q => q.StoredAt, new GeoCoordinate(1, 1), 10, facet => facet.Limit = 10)
List of tags to exclude in facet calculation
.FacetSpatial("AliasName", q => q.StoredAt, new GeoCoordinate(1, 1), 10, facet => facet.Excludes = new[] { "tag1", "tag2" })
Function used in spatial filter
.FacetSpatial("AliasName", q => q.StoredAt, new GeoCoordinate(1, 1), 10, facet => facet.FunctionType = SpatialFunctionType.Bbox)
Last updated