介紹
與眾不同 windows phone 8.0 之 位置和地圖
位置(GPS) - Location API
諾基亞地圖
樣本
1、示範新 Location API 的應用
GPS/Demo.xaml
<phone:PhoneApplicationPage x:Class="Demo.GPS.Demo" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone" xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" FontFamily="{StaticResource PhoneFontFamilyNormal}" FontSize="{StaticResource PhoneFontSizeNormal}" Foreground="{StaticResource PhoneForegroundBrush}" SupportedOrientations="Portrait" Orientation="Portrait" mc:Ignorable="d" shell:SystemTray.IsVisible="True"> <Grid x:Name="LayoutRoot"> <StackPanel> <TextBlock Name="lblMsg" TextWrapping="Wrap" /> <Button x:Name="btnDemo" Content="通過 GPS 擷取當前位置" Click="btnDemo_Click" /> </StackPanel> </Grid> </phone:PhoneApplicationPage>