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 (将#修改为@)