微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Xamarin Essentials 的地理定位功能错误位置结果

如何解决Xamarin Essentials 的地理定位功能错误位置结果

我在我的应用程序中使用 Xamarin Essentials 的地理定位功能作为一直运行的前台服务,我注意到在几台设备上我有时会获得与实际位置相距很远的位置,如下所示(标注位置与实际位置相差较远):

public async Task Run(CancellationToken token)
    {
        await Task.Run(async () => {
            while (!stopping)
            {
                token.ThrowIfCancellationRequested();
                try
                {
                    await Task.Delay(2000);
                    var request = new GeolocationRequest(GeolocationAccuracy.Best);
                    var location = await Geolocation.GetLocationAsync(request);
                    if (location != null)
                    {
                        var message = new LocationMessage
                        {
                            Latitude = location.Latitude,Longitude = location.Longitude
                        };
                        Device.BeginInvokeOnMainThread(() =>
                        {
                            MessagingCenter.Send<LocationMessage>(message,"Location");
                        });
                    }
                }
                catch (Exception ex)
                {
                    Device.BeginInvokeOnMainThread(() =>
                    {
                        var errormessage = new LocationErrorMessage();
                        MessagingCenter.Send<LocationErrorMessage>(errormessage,"LocationError");
                    });
                }
            }
            return;
        },token);
    }

result

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。