-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainPage.xaml
More file actions
31 lines (29 loc) · 1.21 KB
/
Copy pathMainPage.xaml
File metadata and controls
31 lines (29 loc) · 1.21 KB
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
<Page
x:Class="App13.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App13"
xmlns:bm="using:Bing.Maps"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<bm:Map
Grid.Row="0"
Credentials="ApMMu9EJVCzluSvRJysHTmMmgHqdzgZFr2LflWcJO7gq72kob7Vzrdr6uHnIdwdi"
x:Name="BingMap"
ZoomLevel="8" Grid.RowSpan="3"
>
<bm:Map.Center>
<bm:Location Latitude="36.818810000000000000" Longitude="10.165960000000041000" />
</bm:Map.Center>
</bm:Map>
<TextBox Grid.Row="2" FontSize="30" Name="xText" Margin="477,70,489,153"/>
<TextBox Grid.Row="2" FontSize="30" Name="yText" Margin="477,166,489,57"/>
</Grid>
</Page>