1

我开始使用 MongoDB API,因为我们使用的是 Azure Cosmos DB。在 MongoDB 中使用 $near 的示例,其基本结构为 {key:"A": localtion:{type:"Point", coordinates:[1,2]}},效果很好。问题是当我需要使用位置数组时。

我正在尝试执行此查询而没有结果。我在做什么坏事?

db.places.insert( {
    id:1,
    name: "AAAAAAAAAAA",
    locals:[
        {
        location: { type: "Point", coordinates: [-73.9928, 40.7191 ] },
        }
    ],
   category: "Parks"
} );   
db.places.insert( {
    id:2,
    name: "BBBBBBBBBBB",
    locals:[
        {
        location: { type: "Point", coordinates: [-73.9928, 40.7193 ] },
        }
    ],
   category: "Parks"
} );
db.places.insert( {
    id:3,
    name: "CCCCCCCCCCCCC",
    locals:[
        {
        location: { type: "Point", coordinates: [  -73.9375, 40.8303 ] },
        }
    ],
   category: "Parks"
} );
//Create index
db.places.createIndex({ "locals.location" : "2dsphere" })
//Query without result
db.places.find(
   {
     "locals.location":
       { $near:
          {
            $geometry: { type: "Point",  coordinates: [ -73.9375, 40.8303 ] },
            $minDistance: 1000,
            $maxDistance: 5000
          }
       }
   }
)

这些地方有很多当地人,这就是为什么我可以在里面放很多东西。

我希望有一个人可以帮助我。

干杯。

4

1 回答 1

0

根据我对您的样本数据的测试,也得到了与您相同的空结果。据我所知,CosmosDB 仅支持 MongoDB API 的子集,并将请求转换为 CosmosDB SQL 等效项。CosmosDB 有一些不同的行为和结果。但是 CosmosDB 有责任改进他们对 MongoDB 的仿真。

当然,您可以在此处添加反馈以提交您的要求,或者如果您想要完整的 MongoDB 功能支持,可以考虑在 Azure 上使用MongoDB Atlas 。

于 2018-11-14T01:52:38.270 回答