Skip to content

Instantly share code, notes, and snippets.

@eternaltung
Created September 12, 2013 13:26
Show Gist options
  • Save eternaltung/6537262 to your computer and use it in GitHub Desktop.
Save eternaltung/6537262 to your computer and use it in GitHub Desktop.
<Page
x:Class="MapTest.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MapTest"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:Maps="using:Bing.Maps"
mc:Ignorable="d">
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<Maps:Map x:Name="bingmap" Credentials="Your Key" ZoomLevel="14" Margin="0,143,0,0"/>
<Button Content="zh-Hant" Height="51" Margin="277,50,0,0" Width="157" Click="Button_Click"/>
<Button Content="ko" Height="51" Margin="498,50,0,0" Width="157" Click="Button_Click"/>
<Button Content="ja" Height="51" Margin="695,50,0,0" Width="157" Click="Button_Click"/>
</Grid>
</Page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment