MapPage.xaml 1.3 KB

123456789101112131415161718192021222324252627282930
  1. <Page
  2. x:Class="Breda_Tour.MapScreen.MapPage"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="using:Breda_Tour.MapScreen"
  6. xmlns:c="using:Breda_Tour.CustomControls"
  7. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. xmlns:Maps ="using:Windows.UI.Xaml.Controls.Maps"
  10. xmlns:customControls="using:Breda_Tour.CustomControls"
  11. mc:Ignorable="d">
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="Auto" />
  15. <RowDefinition Height="Auto" />
  16. <RowDefinition Height="*" />
  17. </Grid.RowDefinitions>
  18. <c:DefaultTopBar x:Uid="MapPagetxtKaart" Header="Kaart" Grid.Row="0"/>
  19. <c:DefaultPivotControl x:Name="DefaultPivot" Grid.Row="1"/>
  20. <Maps:MapControl x:Name="Map" Grid.Row="2" MapElementClick="Map_OnMapElementClick"
  21. ZoomInteractionMode="GestureAndControl"
  22. TiltInteractionMode="GestureAndControl"
  23. RotateInteractionMode="GestureAndControl"
  24. MapServiceToken="P4P2fAwXuk7ndsVIsaaV~uYjur55RgwmLsiwFwd72bQ~ApDRixf1L-0o_kMY8EtBBDm8xe7G2oz1k2-u0HQIATvSp-iiKr5KLNkYc1HF5D5e"/>
  25. </Grid>
  26. </Page>