blob: 8586d64e3981e0d02ba7abeaebde3dafbb21de8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
var t = db.geod;
t.drop();
t.save({loc: [0, 0]});
t.save({loc: [0.5, 0]});
t.createIndex({loc: "2d"});
// do a few geoNears with different maxDistances. The first iteration
// should match no points in the dataset.
dists = [.49, .51, 1.0];
for (idx in dists) {
b = db.geod
.aggregate([
{$geoNear: {near: [1, 0], distanceField: "d", maxDistance: dists[idx]}},
{$limit: 2},
])
.toArray();
assert.eq(b.length, idx, "B" + idx);
}
|