Class GeoWithinCircle<TCoordinates>
Object that specifies the center point and the radius in meters to search within.
public sealed class GeoWithinCircle<TCoordinates> : GeoWithinArea<TCoordinates> where TCoordinates : GeoJsonCoordinates
Type Parameters
TCoordinates
The type of the coordinates.
- Inheritance
-
GeoWithinArea<TCoordinates>GeoWithinCircle<TCoordinates>
- Inherited Members
Constructors
GeoWithinCircle(GeoJsonPoint<TCoordinates>, double)
Initializes a new instance of the GeoWithinCircle<TCoordinates> class.
public GeoWithinCircle(GeoJsonPoint<TCoordinates> center, double radius)
Parameters
center
GeoJsonPoint<TCoordinates>Center of the circle specified as a GeoJSON point.
radius
doubleRadius specified in meters.
Properties
Center
Gets the center of the circle specified as a GeoJSON point.
public GeoJsonPoint<TCoordinates> Center { get; }
Property Value
- GeoJsonPoint<TCoordinates>
Radius
Gets the radius specified in meters.
public double Radius { get; }