MongoDB Geospacial Query Spheres Overlapping Single Point
问题 I am trying to create a geospacial query in MongoDB that finds all circles (with varying radius) that overlap a single point. My data looks something like this: { name: "Pizza Hut", lat: <latitude> lon: <longitude> radius: 20 ... } Basically, I am trying to do exactly what is described in this SO post but with MongoDB - Get all points(circles with radius), that overlap given point geoIntersects (http://docs.mongodb.org/manual/reference/operator/query/geoIntersects/) looks like what I need.