Does the map only show the elements on the map that are visible to the user at that time or are all the elements shown at all time?
Hi Tarik,
The maps component does not fetch all rows at once. Instead, it retrieves only the rows that fall within the visible bounds of the viewport, along with a buffer. As you scroll, it will fetch additional rows that come into view, while discarding data that’s no longer needed.
Rendering is also lazy: the component only renders the rows that are visible at any given time, removing those that scroll out of view.