BindableMapRT are C# wrappers around Microsoft BingMap control for WinRT to make databinding in XAML possible.
for example:
<Maps:BindableMap x:Name="MapControl" ShapeLayers="{Binding ShapeLayers}" Credentials="" />
And not only binding with the basic properties but also an itemssource available to bind with:
<Maps:BindableMap DataTemplateSelector="{StaticResource ItemTemplateSelector}" ItemsSource="{Binding Items}" />
<DataTemplate x:Key="ItemTemplate"
Maps:LocationAwareDataTemplate.LatitudePath="Latitude"
Maps:LocationAwareDataTemplate.LongitudePath="Longitude">
<Grid Width="50" Height="50" Background="Black">
<TextBlock Text="{Binding Title}" Foreground="Red" />
</Grid>
</DataTemplate>