I can't seem to find the simple logic to clear all map selections? Am I missing something here?
Solved! Go to Solution.
Nevermind. I thought there would be a command, but i just did this
return QueuedTask.Run(() =>
{
if (MapView.Active != null && MapView.Active.Map != null)
{
MapView.Active.Map.SetSelection(null);
}
};
Nevermind. I thought there would be a command, but i just did this
return QueuedTask.Run(() =>
{
if (MapView.Active != null && MapView.Active.Map != null)
{
MapView.Active.Map.SetSelection(null);
}
};