Click or drag to resize
MongoCollectionTDefaultDocumentGeoNear Method (IMongoQuery, Double, Double, Int32, IMongoGeoNearOptions)

Note: This API is now obsolete.

Runs a GeoNear command on this collection.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.4.1
Syntax
[ObsoleteAttribute("Use the overload of GeoNear that takes a GeoNearArgs parameter instead.")]
public virtual GeoNearResult<TDefaultDocument> GeoNear(
	IMongoQuery query,
	double x,
	double y,
	int limit,
	IMongoGeoNearOptions options
)

Parameters

query
Type: MongoDB.DriverIMongoQuery
The query (usually a QueryDocument or constructed using the Query builder).
x
Type: SystemDouble
The x coordinate of the starting location.
y
Type: SystemDouble
The y coordinate of the starting location.
limit
Type: SystemInt32
The maximum number of results returned.
options
Type: MongoDB.DriverIMongoGeoNearOptions
Options for the GeoNear command (see GeoNearOptionsDocument, GeoNearOptionsWrapper, and the GeoNearOptions builder).

Return Value

Type: GeoNearResultTDefaultDocument
A GeoNearResultTDocument.
See Also