MapPage.xaml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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 Header="Kaart" Grid.Row="0"/>
  19. <c:DefaultPivotControl x:Name="DefaultPivot" Grid.Row="1"/>
  20. <Maps:MapControl
  21. x:Name="Map"
  22. Grid.Row="3"
  23. ZoomInteractionMode="GestureAndControl"
  24. TiltInteractionMode="GestureAndControl"
  25. RotateInteractionMode="GestureAndControl"
  26. MapServiceToken="P4P2fAwXuk7ndsVIsaaV~uYjur55RgwmLsiwFwd72bQ~ApDRixf1L-0o_kMY8EtBBDm8xe7G2oz1k2-u0HQIATvSp-iiKr5KLNkYc1HF5D5e"/>
  27. </Grid>
  28. </Page>