-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuk_map.xaml
46 lines (45 loc) · 4.03 KB
/
uk_map.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Page
x:Class="project_travel.uk_map"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:project_travel"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="DarkRed">
<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
<Grid>
<WebView x:Name="map_uk" Width="812" Source="https://www.google.com/maps/@53.9755997,-3.2107621,5.42z" Margin="106,66,106,79"/>
<Rectangle HorizontalAlignment="Center" Height="50" Margin="0,561,0,0" Fill="White" VerticalAlignment="Top" Width="812"/>
<Grid HorizontalAlignment="Left" Height="44" VerticalAlignment="Top" Width="723"/>
<Grid HorizontalAlignment="Center" Height="41" Margin="0,570,0,0" VerticalAlignment="Top" Width="723">
<Rectangle HorizontalAlignment="Left" Height="33" Fill="Black" VerticalAlignment="Top" Width="142"/>
<Button x:Name="london_button" Content="London" VerticalAlignment="Top" Width="142" Height="33" Tapped="london_button_Tapped"/>
<Rectangle HorizontalAlignment="Left" Height="33" Margin="193,0,0,0" Fill="Black" VerticalAlignment="Top" Width="142"/>
<Button x:Name="manchester_button" Content="Manchester" Margin="193,0,0,0" VerticalAlignment="Top" Width="142" Height="33" Tapped="manchester_button_Tapped"/>
<Rectangle HorizontalAlignment="Left" Height="33" Margin="387,0,0,0" Fill="Black" VerticalAlignment="Top" Width="142"/>
<Rectangle HorizontalAlignment="Left" Height="33" Margin="581,0,0,0" Fill="Black" VerticalAlignment="Top" Width="142"/>
<Button x:Name="liverpool_button" Content="Liverpool" Margin="387,0,0,0" VerticalAlignment="Top" Width="142" Height="33" Tapped="liverpool_button_Tapped"/>
<Button x:Name="birmingham_button" Content="Birmingham" Margin="581,0,0,0" VerticalAlignment="Top" Width="142" Height="33" Tapped="birmingham_button_Tapped"/>
</Grid>
<Grid HorizontalAlignment="Center" Height="47" Margin="0,21,0,0" VerticalAlignment="Top">
<Rectangle HorizontalAlignment="Left" Height="45" Fill="White" VerticalAlignment="Center" Width="812"/>
<Rectangle HorizontalAlignment="Left" Height="45" Fill="LightGreen" VerticalAlignment="Center" Width="69" RenderTransformOrigin="0.5,0.5">
<Rectangle.RenderTransform>
<CompositeTransform ScaleX="-1"/>
</Rectangle.RenderTransform>
</Rectangle>
<Image x:Name="home_button" HorizontalAlignment="Left" Height="38" Margin="17,9,0,0" VerticalAlignment="Top" Width="35" Source="/Assets/home_selected.png" Tapped="home_button_Tapped"/>
<Image x:Name="maps_button" HorizontalAlignment="Left" Height="26" Margin="97,9,0,0" VerticalAlignment="Top" Width="17" Source="/Assets/maps.png"/>
<Rectangle HorizontalAlignment="Left" Height="2" Fill="LightGreen" VerticalAlignment="Top" Width="37" RenderTransformOrigin="0.5,0.5" Margin="87,41,0,0">
<Rectangle.RenderTransform>
<CompositeTransform ScaleX="-1"/>
</Rectangle.RenderTransform>
</Rectangle>
<Image x:Name="videos_button" HorizontalAlignment="Left" Height="30" VerticalAlignment="Center" Width="26" Source="/Assets/videos.png" Margin="145,0,0,0" Tapped="videos_button_Tapped" RenderTransformOrigin="0.531,0.52"/>
<Image x:Name="checklist_button" HorizontalAlignment="Left" Height="25" VerticalAlignment="Center" Width="30" Source="/Assets/checklist.png" Margin="195,0,0,0" Tapped="checklist_button_Tapped"/>
<HyperlinkButton x:Name="about_button" Content="About" Margin="751,0,0,0" Tapped="about_button_Tapped" FontSize="16"/>
</Grid>
</Grid>
</ScrollViewer>
</Page>