答案 0 :(得分:2)
此解决方案适用于我:
我以东北和西南的格式从Google Maps API获取绑定的坐标。这当然意味着你必须使用" top_right"和" bottom_left"在ElasticSearch中。
QUERY:
GET /users/users/_search
{
"query":
{
"filtered":
{
"filter":
{
"geo_bounding_box":
{
"location":
{
"top_right":
{
"lat": 53.5551999,
"lon": 7.227510199999999
},
"bottom_left":
{
"lat": 50.75038379999999,
"lon": 3.357962
}
}
}
}
}
}
}