Using MongoDB I\'m querying homes that are within 25 miles of a lat/long.
My first attempt to do this used the near command, like so:
var near = Quer
Geospatial $near queries set a default limit() of 100 results. You should be able to get more results by setting a new limit().
$near
limit()
While "near" queries are sorted by distance, "within" is not (although "within" doesn't have a default limit).