I was wondering why does the MapItemsControl
exists?
Why aren't these right on the MapControl
instead?
What was the reason why UWP team had put these properties into a separate class instead of adding these right on the MapControl
?
What's interesting (or confusing?) is you can basically add both MapItemsControl
and an element to MapControl
and it displays all:
<MapControl>
<MapItemsControl ItemsSource="{Binding Items}" />
<Border MapControl.Location="{Binding Location}" />
</MapControl>