Scraping dynamically loaded elements, such as interactive maps, cannot be achieved through a "get-all-at-once" method.
This is because the data is retrieved based on specific inputs, typically geographic coordinates.
To extract all the data, you need to implement a loop that iterates over all available coordinates.
For each coordinate or coordinate set, your script should trigger the necessary network requests and capture the returned data individually.
While alternative approaches such as simulated dragging or viewport shifting can help explore the map, they still rely on a looping mechanism.
Ultimately, the data must be collected incrementally, input by input not in bulk.