Don't constantly redraw the report rows

Because it's wasteful and interrupts my click handlers.
This commit is contained in:
Eli Ribble 2026-02-05 01:22:47 +00:00
parent 3cdad6fd77
commit d58a893651
No known key found for this signature in database
2 changed files with 7 additions and 2 deletions

View file

@ -193,6 +193,9 @@ class MapMultipoint extends HTMLElement {
on(a, b) {
return this._map.on(a, b);
}
once(a, b) {
return this._map.once(a, b);
}
queryRenderedFeatures(a) {
return this._map.queryRenderedFeatures(a);
}