DeviceLocationSourceChangedEvent Class
Occurs when the local device location source is switched.
Subscribe to DeviceLocationSourceChanged event
private void SubscribeToSourceEvents()
{
DeviceLocationSourceChangedEvent.Subscribe(OnDeviceLocationSourceChanged);
}
private void OnDeviceLocationSourceChanged(DeviceLocationSourceChangedEventArgs args)
{
if (args == null)
return;
var source = args.DeviceLocationSource;
// TODO - something with the updated source properties
}
Target Platforms: Windows 11, Windows 10
ArcGIS Pro version: 3 or higher.