-
Notifications
You must be signed in to change notification settings - Fork 8.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Maps] Update Map extent queries to use bounding box logic for both point and shape queries #93156
[Maps] Update Map extent queries to use bounding box logic for both point and shape queries #93156
Conversation
Pinging @elastic/kibana-gis (Team:Geo) |
x-pack/plugins/maps/common/elasticsearch_util/elasticsearch_geo_utils.js
Outdated
Show resolved
Hide resolved
x-pack/plugins/maps/common/elasticsearch_util/elasticsearch_geo_utils.test.js
Outdated
Show resolved
Hide resolved
x-pack/plugins/maps/common/elasticsearch_util/elasticsearch_geo_utils.test.js
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thx for the simplification!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
code review
💚 Build Succeeded
Metrics [docs]Async chunks
Page load bundle
History
To update your PR or re-run it, just comment with: |
…oint and shape queries (elastic#93156)
* master: (45 commits) Add outcome of node scripts/build_api_docs (elastic#93399) [Lens] fix long field name on field stats panel doesn't wrap (elastic#93279) [Bug] Fix filter creation for numeric scripted fields in Discover (elastic#93224) [uptime] Fix anomaly alert edit (elastic#93025) Consolidate @babel/* packages and use latest compatible version (elastic#93264) [Search Embeddable] Add highlighting when searching (elastic#93178) [APM] Add missing bottom border to header (elastic#93179) [CI] No longer collect APM span stack traces (elastic#93263) [XY Chart] Fix "No data to display" error when using IP range aggregation to split series (elastic#93024) update generated public api docs API DOCS Step 3/3 (elastic#92929) chore(NA): look for bazel packages on npm_module folder during distributable build (elastic#93262) rename advanced setting ml:fileDataVisualizerMaxFileSize to fileUpload:maxFileSize and increase max geojson upload size to 1GB (elastic#92620) [kbn/optimizer] allow customizing the limits path from the script (elastic#93153) [Alerting][Docs] Adding template for documenting alert and action types (elastic#92830) [jenkins] convert baseline capture job to use tasks (elastic#93288) removing the linked issue in comments from PR (elastic#93303) chore(NA): do not include fs within a storybook build (elastic#93294) [Maps] Update Map extent queries to use bounding box logic for both point and shape queries (elastic#93156) Add searchDuration to EQL and Threshold rules (elastic#93149) ...
Resolves #82480. Enables
geo_bounding_box
for geo shape layers.To test:
Dynamically filter for data in the visible map area
& finish adding layerNote: The original issue focused on consolidating the two extent filter construction paths into one, which is what this PR does, but it seems like we could also update the drawable bbox filters to use
geo_bounding_box
instead ofgeo_shape
which it does for both point and shape layers currently. Happy to discuss!