err = c.Find(bson.M{
"location": bson.M{
"$nearSphere": bson.M{
"$geometry": bson.M{
"type": "Point",
"coordinates": []float64{lat, long},
},
"$maxDistance": scope,
},
},
}).All(&places)