所以我想获取用户的位置并对其进行反向地理编码以获取地址和门牌号。
因此,我安装了预发布的包 Xamarin.Essentials。我想使用地理定位和地理编码 API,所以我写了一些代码,但代码if (location != null)
在 GetCurrentLocation 的尝试中从未到达。
根据 Xam.Plugin.Geolocator 作者 James Montemagno 所说,我认为 Xamarin.Essentials 处于预发布状态并不重要:
我将继续工作和维护我的插件,但我建议您检查 Xamarin.Essentials 以查看它是否非常适合您的应用程序,因为它一直适用于我的所有应用程序!
我做了什么?
我已经搜索了有关我遇到的问题的 StackOverflow 问题,但据我所知,我找不到可以帮助我的问题。
我看过的问题:
- https://stackoverflow.com/a/39704400/4815184
- Xamarin,使用来自 Xlabs 示例的 Geolocation
- Xamarin Forms WebView 地理位置问题
- Xamarin:发生地理定位错误:未经授权
- 地理定位不起作用 iOS PCL Xamarin 表单
- Xamarin - 地理位置不起作用......但是为什么
- Xamarin.Forms.Webview 跨平台地理位置,有可能吗?
我也尝试过添加超时是否可行:var request = new GeolocationRequest(GeolocationAccuracy.Medium, timeout: TimeSpan.MaxValue );
但是我在这个位置上也遇到了同样的问题。它从未到达 if 语句。
我的代码:
FillInLocationInForm();
在我的 Page 构造函数中设置。
public Location location;
并public Placemark placemark;
在 Page 类中设置。
这些是 Page 类中的相关函数:
public async void FillInLocationInForm()
{
if (await GetCurrentLocation())
{
if (await ReverseGeocodeLocation())
{
await this.DisplayAlert("Location", placemark.AdminArea + " " + placemark.FeatureName + " " + placemark.Locality + " " + placemark.SubLocality + " " + placemark.SubAdminArea + " " + placemark.SubThoroughfare + " " + placemark.Thoroughfare, "Okay", "Okay");
}
}
}
public async Task<bool> GetCurrentLocation ()
{
try
{
var request = new GeolocationRequest(GeolocationAccuracy.Medium);
var location = await Geolocation.GetLocationAsync(request);
if (location != null)
{
this.location = location;
return await Task.FromResult(true);
}
}
catch (FeatureNotSupportedException fnsEx)
{
// Handle not supported on device exception
}
catch (PermissionException pEx)
{
// Handle permission exception
}
catch (Exception ex)
{
// Unable to get location
}
return await Task.FromResult(false);
}
public async Task<bool> ReverseGeocodeLocation()
{
try
{
var lat = location.Latitude;
var lon = location.Longitude;
var placemarks = await Geocoding.GetPlacemarksAsync(lat, lon);
var placemark = placemarks?.FirstOrDefault();
if (placemark != null)
{
//var geocodeAddress =
// $"AdminArea: {placemark.AdminArea}\n" +
// $"CountryCode: {placemark.CountryCode}\n" +
// $"CountryName: {placemark.CountryName}\n" +
// $"FeatureName: {placemark.FeatureName}\n" +
// $"Locality: {placemark.Locality}\n" +
// $"PostalCode: {placemark.PostalCode}\n" +
// $"SubAdminArea: {placemark.SubAdminArea}\n" +
// $"SubLocality: {placemark.SubLocality}\n" +
// $"SubThoroughfare: {placemark.SubThoroughfare}\n" +
// $"Thoroughfare: {placemark.Thoroughfare}\n";
//Console.WriteLine(geocodeAddress);
this.placemark = placemark;
return await Task.FromResult(true);
}
}
catch (FeatureNotSupportedException fnsEx)
{
// Feature not supported on device
}
catch (Exception ex)
{
// Handle exception that may have occurred in geocoding
}
return await Task.FromResult(false);
}
我还将这些权限添加到我的应用程序 AndroidManifest 并在运行时请求它们。我已经在我的应用设置中看到了位置和存储都被选中。:
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-feature android:name="android.hardware.location" android:required="false" />
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
<uses-feature android:name="android.hardware.location.network" android:required="false" />
我正在关注的文档:
任何帮助表示赞赏。
编辑:
我有一种预感,我需要向 中添加一个取消令牌GetLocationAsync
,但我还不知道怎么做。我在 GeolocationRequest 旁边看不到它:
编辑2:
我添加了 CancellationToken,但仍然没有到达 if 语句。也许我还没有正确使用它。
using System.Threading; // add above
CancellationTokenSource source = new CancellationTokenSource();
CancellationToken cancelToken = source.Token;
var location = await Geolocation.GetLocationAsync(request, cancelToken);
编辑3:
下图中的断点永远不会触发,这意味着永远不会到达 if 语句。不知何故,代码退出了尝试,但没有进入其中一个 catch 语句。Console.WriteLine()
我现在在我的 catch 语句中使用 a 。我在设备日志中看不到任何内容。我测试了Console.WriteLine()
我在设备日志中看到的问题。