在MongoDB的Geearear聚合查询中未获取数据

时间:2018-10-29 06:44:56

标签: database mongodb mongoose aggregation-framework aggregate-functions

没有获得超过特定值的geonear数据。 下面是汇总查询提供者。

           {
              $geoNear: {
                near: {
                  type: "Point",
                  coordinates: [0.00001, 32.4995712]
                },
                key: "location",
                distanceField: "distance",
                maxDistance: 99999999999999999,
                spherical: true
              }
            }

已指定数据库中的用户位置

"location" : {
    "type" : "Point",
    "coordinates" : [ 
        -46.4519168, 
        -23.4995712
    ]
}

当坐标更改的结果不包括此位置时。为什么? 预先感谢。

0 个答案:

没有答案