Skip to main content
  • Type: integer
  • Default: null
  • Scope: search
The minimumAroundRadius parameter sets the smallest allowable radius (in meters) when Algolia automatically computes the search area in a radial search. When a radius is automatically generated, the area of the circle might be too small. This setting lets you increase the size of the circle, thus ensuring sufficient coverage.

Usage

Example

Current API clients

index.Search(new Query("query")
{
    MinimumAroundRadius = 1000
});
index.Search(new Query("query")
{
    MinimumAroundRadius = 1000
});
I