如何在Spring Mongo模板中使用inclocs



需要在spring mongo模板中编写此查询

"$geoNear": {
"near": [ -73.9815103, 40.7475731 ],
"spherical": true,
"distanceField": "distance",
"includeLocs": "locs"
}

特别是" inclelocs"; "locs">这部分

此选项目前缺失。我打开了3586号,为它提供支持。
同时,您可以做如下操作:

GeoNearOperation operation = new GeoNearOperation(query, "distance") {
@Override
public Document toDocument(AggregationOperationContext context) {
Document $geoNear = super.toDocument(context);
$geoNear.put("includeLocs", "distance.location");
return $geoNear;
}
}

最新更新