Not sure if this is intended, but whenever I click on the map, I see the MapClick function AND the Map_TrackEnded function firing. It feels like the TrackEnded event should not be happening.
Here’s the simple setup:
MyMap.TrackOverlay.TrackEnded += TrackEndedHandler;
MyMap.MapClick += MapClickHandler;
Using v13. Here’s the call stack:
If it is intended, is there a way to prevent this from firing based on what mouse button was pressed? When using the trackoverlay, I use the left mouse button for dragging/selecting groups of features, and the middle button is used for panning. I don’t see any sort of mouse related parameter in the TrackEndedTrackInteractiveOverlayEventArgs though.
Thanks!