Can some expert point the best ways to a Geospacial search using official C# driver in MongoDB. Best Object constructor(strings /doubles), Build an index, find near. Many thanks for your help.

db.places.ensureIndex( { loc : "2d" } , { min : -500 , max : 500 } ),
db.places.find( { loc : { $near : [50,50] , $maxDistance : 5 } } ).limit(20),

link|improve this question

71% accept rate
feedback

1 Answer

up vote 6 down vote accepted

The C# equivalent to those Mongo shell commands is:

places.EnsureIndex(IndexKeys.GeoSpatial("loc"), IndexOptions.SetGeoSpatialRange(-500, 500));
var query = Query.Near("loc", 50, 50, 5);
var cursor = places.Find(query).SetLimit(20);
foreach (var hit in cursor) {
    // process hit
}
link|improve this answer
Thanks Robert, what about the loc object? Can suggest an object constructor. – user325558 Feb 19 '11 at 21:52
sorry found in the Query.Near. – user325558 Feb 19 '11 at 23:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.