Within an UWP-App containing a MapControl, is there a way to distinct between a manipulation to the map made by the user (e.g. by pinch to zoom) and one, that is made by the app itself? (e.g. by calling mapControl.TrySetViewAsync(...)
)
It doesn't seem like that there's an eventhandler for that, right?
I already tried several ones (like LoadingStatusChanged
or CenterChanged
), but none of them are making any difference between user- and app-manipulation..