Definition定义
$maxDistanceThe$maxDistanceoperator constrains the results of a geospatial$nearor$nearSpherequery to the specified distance.$maxDistance运算符将地理空间$near或$nearSphere查询的结果限制为指定的距离。The measuring units for the maximum distance are determined by the coordinate system in use.最大距离的测量单位由使用的坐标系确定。For GeoJSON point objects, specify the distance in meters, not radians. You must specify a non-negative number for对于GeoJSON点对象,以米为单位指定距离,而不是以弧度为单位。必须为$maxDistance.$maxDistance指定一个非负数。The 2dsphere and 2d geospatial indexes both support$maxDistance: .2dsphere和2d地理空间索引都支持$maxDistance:。
Example示例
The following example query returns documents with location values that are 以下示例查询返回的文档的位置值距离点10 or fewer units from the point [ -74 , 40 ].[-74,40]不超过10个单位。
db.places.find( {
loc: { $near: [ -74 , 40 ], $maxDistance: 10 }
} )
MongoDB orders the results by their distance from MongoDB根据距离[ -74 , 40 ]. [-74,40]对结果进行排序。The operation returns the first 100 results, unless you modify the query with the 除非您使用cursor.limit() method.cursor.limit()方法修改查询,否则该操作将返回前100个结果。