Here is the XAML code:
The MapItemsControl
is currently not yet MVVM bindable ( what I am aware off ).
So best way is to set it's ItemsSource
in the code behind of your view.
You can still use the collection defined in your ViewModel though! Options are:
this.StoresMapItemsControl.ItemsSource = ServiceLocator.Current.GetInstance().Locations;