我正在尝试使用Windows Phone 8模拟器上的摇动加速度计创建代码以在地图上查找位置。
我使用反向地理编码使用按钮显示位置,但我不知道如何使用摇晃传感器显示位置,任何人都可以帮助或给我链接到某个地方我可以学习为此功能创建代码。< / p>
private void ReverseGeocodeQuery_QueryCompleted(object sender, QueryCompletedEventArgs<IList<MapLocation>> e)
{
if (e.Error == null)
{
if (e.Result.Count > 0)
{
MapAddress address = e.Result[0].Information.Address;
CurrentLocTextBlock.Text = "Current Location: ";;
AddressTextBlock.Text = address.City + ", " + address.State;
}
}
}