Windows 8 地理位置定位以及定位器状态监测

在Windows8中,定位器不一定随时可用,所以我们在使用定位器时最好先检查一下定位器的状态。
状态可以从Geolocator中的属性LocationStatus获得。

定位器状态是枚举类型PositionStatus,共有6种状态:Ready、Initializing、NoData、Disabled、NotInitialized、NotAvailable。
另外,有时还需要不断检测定位器的状态,当定位器不可用时给用户友好的提示,或做出其它的动作。Geolocator中有一个事件StatusChanged专门用来监测定位器状态的改变。
下面来看代码,总共只有一张页面。
前台XAML代码如下

复制代码

代码如下:

<Page
x:Class="Win8Location.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Win8Location"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<StackPanel Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<Button x:Name="btnCheckStatusChanged" Content="监测定位器状态" Click="btnCheckStatusChanged_Click"/>
<ScrollViewer>
<TextBlock x:Name="txtMsg" TextWrapping="Wrap" FontSize="20"/>
</ScrollViewer>
</StackPanel>
</Page>

后台cs代码如下

复制代码

代码如下:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Windows.Devices.Geolocation;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Core;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
namespace Win8Location
{
public sealed partial class MainPage : Page
{
Geolocator geo = null;
public MainPage()
{
this.InitializeComponent();
}
private void btnCheckStatusChanged_Click(object sender, RoutedEventArgs e)
{
btnCheckStatusChanged.IsEnabled = false;
if (geo == null)
{
geo = new Geolocator();
}
txtMsg.Text = DateTime.Now.ToString() + ">定位器启动,状态为:" + geo.LocationStatus + "/n状态描述:" + GetDescription(geo.LocationStatus);
geo.StatusChanged += geo_StatusChanged;
}
async void geo_StatusChanged(Geolocator sender, StatusChangedEventArgs args)
{
PositionStatus statu = args.Status;
string msg = "/n/n" + DateTime.Now.ToString() + ">定位器状态改变为:" + statu.ToString();
msg += "/n状态描述:" + GetDescription(statu);
await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
{
txtMsg.Text += msg;
});
}
string GetDescription(PositionStatus statu)
{
string description = null;
switch (statu)
{
case PositionStatus.Ready:
description = "提供位置数据。";
break;
case PositionStatus.Initializing:
description = "位置提供程序正在初始化。如果 GPS 是位置数据源,并且视图中的 GPS 接收器没有所需的附属数目来获取准确的位置,则此为该状态。";
break;
case PositionStatus.NoData:
description = "没有来自任何位置提供程序的可用位置数据。在可从位置传感器获取数据之前,LocationStatus 将在应用程序调用 GetGeopositionAsync或注册 PositionChanged 事件的事件处理程序时具有此值。数据可用后,LocationStatus 转换为 Ready 状态。";
break;
case PositionStatus.Disabled:
description = "位置提供程序已禁用。此状态指示尚未被授予该用户访问位置的应用程序权限。";
break;
case PositionStatus.NotInitialized:
description = "检索位置的操作尚未初始化。如果应用程序尚未调用 GetGeopositionAsync,或为 PositionChanged 事件注册事件处理程序,则LocationStatus 可能具有此值。";
break;
case PositionStatus.NotAvailable:
description = "Windows 传感器和位置平台在此版本的 Windows 中不可用。";
break;
default:
description = "您的定位器太先进了,目前的技术无法得知其状态:)";
break;
}
return description;
}
}
}

运行截图如下:

(0)

相关推荐

  • Windows系统怎么更改电池使用状态

    Windows系统怎么更改电池使用状态,下面小编介绍一下.具体如下:方法一1. 右击状态栏的[电池]图标,弹出窗口选择"Windows移动中心"2. 点击[电池栏],选择要使用的方 ...

  • windows启动失败 未能成功启动状态0xc00000e9怎么办?

    这个经验是解决windows未能启动,原因可能是最近更改了硬件或软件,解决此问题的步骤. 1.这个经验是解决windows未能启动,原因可能是最近更改了硬件或软件,解决此问题的步骤.错误代码0xc00 ...

  • Photoshop如何快速选择定位到锁定状态的图层

    在使用Photoshop的时候发现一个问题,平时都不用图层面板来选择定位图层,一般的都是直接用移动工具快速选择想要使用的图层.但是对于锁定中的图层,无法选择锁定图层,那么到底怎样才能不用图层面板,快速 ...

  • Windows用来定位DLL的搜索路径个人经验总结

    《程序员面试宝典》一书中写到,windows搜索dll文件的顺序为:(1)内存(2)knowndlls(3)清单与.local(4)应用程序目录(5)当前工作目录(6)系统目录(7)路径变量 总觉得不 ...

  • Windows用来定位DLL的搜索路径

    《程序员面试宝典》一书中写到,windows搜索dll文件的顺序为:(1)内存(2)knowndlls(3)清单与.local(4)应用程序目录(5)当前工作目录(6)系统目录(7)路径变量 总觉得不 ...

  • windows 7旗舰版显示激活状态不可用怎么办?

    今天下午很闹心,360杀毒优化软件提示版本可升级,本想着升级下然后在用来优化下,接着意外发生了,由于使用360优化而导致把电脑的服务直接给屏蔽掉了, 直接导致电脑无法正常启动,windows激活无法正 ...

  • 怎么进行地理位置定位

    怎样进行地理定位呢?今天小编为大家讲解一下. 操作方法 01 打开手机,找到手机设置,找到定位服务,如图所示. 02 进入之后,将"定位服务"打开,如图所示. 03 打开之后,回到 ...

  • 微信公众地理定位怎么关闭? 关闭微信公众号地理位置的教程

    微信公众号中默认会提供地理位置,想要关闭地理定位功能,该怎么关闭呢?下面我们就来看看详细的教程. 1.在手机桌面点击事先下载好了的微信,如图所示 2.进入这个界面,点击登录,输入账号和密码 3.如何没 ...

  • windows核心宝藏

    文件都已渗入系统各个角落发挥着各自的作用, 但"林子大了,什么鸟都有"!难免会有些"漏网之鱼",使人摸不清是 "哪路神仙".不少可执行文件,微软出于种种目的,只是让它们默默地 睡在那里,并无快捷方式或 ...