我正在使用mongo Db,我需要计算除了Near附近提供的不同坐标的距离。我怎么能这样做?
BsonDocument geoNear1 = new BsonDocument {
{ "$geoNear", new BsonDocument {
{ "near", new BsonDocument {
{ "type", "Point" },
{ "coordinates", new BsonArray { -82.7469202, 2.0479533} }
}},
{ "spherical", true },
{ "limit", 50},
{ "maxDistance", 5000 },
{ "distanceField", "distance" }
}}
};
`
有没有什么方法可以在距离场中传递新坐标,距离应该从这些坐标测量?