class OpenSearch::DSL::Search::Aggregations::GeoBounds
An aggregation which will calculate the smallest bounding box required to encapsulate all of the documents matching the query
@example
search do query do filtered do filter do geo_bounding_box :location do top_left "40.8,-74.1" bottom_right "40.4,-73.9" end end end end aggregation :new_york do geohash_grid field: 'location' end aggregation :map_zoom do geo_bounds field: 'location' end end
@see opensearch.org/guide/en/opensearch/guide/current/geo-bounds-agg.html