| 123456789101112131415161718192021222324252627282930 |
- <Page
- x:Class="Breda_Tour.MapScreen.MapPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="using:Breda_Tour.MapScreen"
- xmlns:c="using:Breda_Tour.CustomControls"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:Maps ="using:Windows.UI.Xaml.Controls.Maps"
- xmlns:customControls="using:Breda_Tour.CustomControls"
- mc:Ignorable="d">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition Height="Auto" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <c:DefaultTopBar x:Uid="MapPagetxtKaart" Header="Kaart" Grid.Row="0"/>
- <c:DefaultPivotControl x:Name="DefaultPivot" Grid.Row="1"/>
- <Maps:MapControl x:Name="Map" Grid.Row="2" MapElementClick="Map_OnMapElementClick"
- ZoomInteractionMode="GestureAndControl"
- TiltInteractionMode="GestureAndControl"
- RotateInteractionMode="GestureAndControl"
- MapServiceToken="P4P2fAwXuk7ndsVIsaaV~uYjur55RgwmLsiwFwd72bQ~ApDRixf1L-0o_kMY8EtBBDm8xe7G2oz1k2-u0HQIATvSp-iiKr5KLNkYc1HF5D5e"/>
-
- </Grid>
- </Page>
|