When I have the map up with a bunch of pins (SymbolLayer) and the user scrolls sideways, I now have some more pins to display. My select from the scroll is to get all pins in the new bounding box because searching against regions of just new areas struck me as not a good idea - a single select is generally faster.
So now I have an existing layer, some of which is still visible, and a collection of items to display that is all items now visible. What is the best approach here:
- Delete the layer and build a new one?
- Clear() the layer and add all the pins.
- Add only the pins from the new list to the existing layer, retaining the existing ones.
And if the optimum approach is #3, should I then remove the no longer visible pins in the layer? Or leave them?
If the optimum is #3 and leave the off the box pins in the layer, then I can track the box for the layer, and don't need to do a query if after they scrolld left, they now scroll back right.
If I understand correctly, you have a bunch of pins in your data source, the map only displays what's in view, and you want to list only the pins in view.
Unfortunately, this is a bit more complicated than I'd like due to the map supporting rotating and pitching (a bounding box won't property represent the map viewable area). There is a code sample for this scenario here: https://samples.azuremaps.com/?sample=get-points-in-current-map-view
It does the following:
moveend
event to trigger an update to the list.Here is the main code blocks:
As an optimization, the code uses Mercator pixel coordinates at zoom level 22 (3cm/1" accuracy) so that it can use a basic geometry point in polygon algorithm rather than a more complex spatial algorithm using latitude/longitude which would require taking into consideration the curvature of the earth.