面试题答案
一键面试db.collection.find({
location: {
$near: {
$geometry: {
type: "Point",
coordinates: [116.4074, 39.9042]
},
$maxDistance: 5000
}
}
});
db.collection.find({
location: {
$near: {
$geometry: {
type: "Point",
coordinates: [116.4074, 39.9042]
},
$maxDistance: 5000
}
}
});