如何在 Mongoose 中使用地理空间查询检索文档

How to retrieve document using geospatial query in Mongoose

我正在尝试对 mongodb 集合使用 mongoose 地理空间查询。 “2dsphere”索引已应用于位置对象。

查询

请在下面查找查询:

const data = await Banks.find(
    {
        location: {
            $near: {
                $geometry: {
                    type: "Point",
                    coordinates: [73.8567, 18.5204]
                },
                $maxDistance: 10000000
            }
        }
    }
);

console.log('-- the data --', data);

数据

其中一个文档如下所示:

{
    "_id" : ObjectId("5c64511a04ede20c28f6ef0b"),
    "location" : {
        "coordinates" : [ 
            92.747338, 
            11.675442
        ],
        "type" : "Point"
    },
    "name" : "Test name",
}

我试过的

我尝试将最大距离设置得尽可能大。但是查询不会检索回任何文档。 可能是什么问题?

上面提到的查询工作正常。我一直指的是错误的型号名称(系列)。集合名称是银行,我一直指的是银行。 MongoDB.

中的型号名称区分大小写