I am working on a location based app in nodejs. I am using
- mongodb v2.4.4
- the native nodejs mongodb driver (https://github.com/mongodb/node-mongodb-native)
- nodejs version 0.10.0
I have geospatial indexes (2dsphere) in all the documents of one collection. The field is like this:
{ "loc" : { "type" : "Point", "coordinates" : [ -122.5418261, 38.0047656 ] } }
The name of the collection is 'Venue'
To query data based on proximity to a particular point, I am using this code:
var query = {
geoNear:"Venue",
near : { type : "Point" ,
coordinates: [ searchParams.longitude, searchParams.latitude ] } ,
spherical : true,
limit: 10000,
maxDistance : searchParams.radius
};
mongodbconnection.command(query, function(error, data){
});
The geospatial query is working fine. But I want to filter the results further by using cursor object methods like skip() and limit(). But the data object returned in the callback is not a cursor. So how do I use skip() and limit() ?
Courtesy: MongoDB Geospatial Query Count Issue (Always 100)