| QueryNearTCoordinates Method (String, GeoJsonPointTCoordinates, Double, Boolean) | 
 
            Tests that the value of the named element is near some location (see $near).
            
 
    Namespace: 
   MongoDB.Driver.Builders
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
 Syntax
Syntaxpublic static IMongoQuery Near<TCoordinates>(
	string name,
	GeoJsonPoint<TCoordinates> point,
	double maxDistance,
	bool spherical
)
where TCoordinates : GeoJsonCoordinates
Public Shared Function Near(Of TCoordinates As GeoJsonCoordinates) ( 
	name As String,
	point As GeoJsonPoint(Of TCoordinates),
	maxDistance As Double,
	spherical As Boolean
) As IMongoQuery
static member Near : 
        name : string * 
        point : GeoJsonPoint<'TCoordinates> * 
        maxDistance : float * 
        spherical : bool -> IMongoQuery  when 'TCoordinates : GeoJsonCoordinates
Parameters
- name
- Type: SystemString
 The name of the element to test.
- point
- Type: MongoDB.Driver.GeoJsonObjectModelGeoJsonPointTCoordinates
 The point.
- maxDistance
- Type: SystemDouble
 The max distance.
- spherical
- Type: SystemBoolean
 if set to true then the query will be translated to $nearSphere.
Type Parameters
- TCoordinates
- The type of the coordinates.
Return Value
Type: 
IMongoQueryAn IMongoQuery.
 See Also
See Also