1

我正在使用 Maps 控件开发一个 UWP 应用程序,该应用程序允许用户通过使用各种方法(例如单击 UWP Map 控件)在地图上添加航点来规划路线。我希望允许用户添加航点或位置的方法之一是按实际地址搜索。我使用下面的 BING Maps REST 服务代码,但如果我不提供当前使用该应用程序的语言和文化,它总是首先返回美国地址,这显然对不在美国的用户没有用(是的,微软,一些我们中的一些人实际上住在美国以外 - 震惊,恐怖!)。我发现如果我为澳大利亚提供诸如“en-AU”之类的语言文化字符串,那么它将首先搜索澳大利亚地址,这非常有效。

public async Task<List<WayPoint>> FindAddress(string address)
    {
        List<WayPoint> matchingWaypoints = new List<WayPoint>();

        //Create a Geocode request to submit to the BING Maps REST service.
        var request = new GeocodeRequest()
        {
            Query = address.Trim(),
            Culture = "en-AU",  //HOW CAN I GET THIS FROM THE DEVICE'S CURRENT LOCATION???
            IncludeIso2 = true,
            IncludeNeighborhood = true,
            MaxResults = 10,
            BingMapsKey = MapServiceToken
        };

        //Process the request by using the BING Maps REST services.
        var response = await ServiceManager.GetResponseAsync(request);

        if (response != null &&
            response.ResourceSets != null &&
            response.ResourceSets.Length > 0 &&
            response.ResourceSets[0].Resources != null &&
            response.ResourceSets[0].Resources.Length > 0)
        {
            int wpNumber = 0;
            foreach (BingMapsRESTToolkit.Location loc in response.ResourceSets[0].Resources)
                matchingWaypoints.Add(new WayPoint(wpNumber++, loc.Address.FormattedAddress, loc.Point.Coordinates[0], loc.Point.Coordinates[1]));               
        }

        return matchingWaypoints;
    }

所以我显然想要做的是根据设备的当前位置(即:国家)而不是设备的区域设置来派生这个字符串。因此,例如,如果有人正在使用我想指定 en-US 的美国应用程序,如果他们在新西兰,它将是 en-NZ,如果在法国,它将是“fr-FR”等。有谁知道如何我能做到这一点吗?我读过的所有关于本地化的东西都使用设备设置而不是当前的物理位置,所以我仍在尝试找出如何去做。

如果有人可以提供帮助,我将不胜感激:-)

4

2 回答 2

1

在https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/Geolocation有一个关于如何获取位置的官方示例

这将返回纬度和经度。然后,您可以使用不同的Bing API 根据该 lat/long 获取国家/地区

这会给你一个国家名称。有了这个,您可以查找预先生成的国家名称代码列表(CultureInfo.GetCultures()在您的计算机上创建),或者您可以查看这个在运行时执行此操作的方法,因为GetCultures()UWP 不支持。

使用区域设置更简单,但如果您想使用实际位置,那么这是要走的路。对于无法访问位置的设备,区域设置可能是一个很好的备份。

另一种方法是各种公共 API 中的一种,它会根据 IP 地址为您提供诸如位置之类的信息。尽管由于在不同国家/地区使用代理等,这也不完美。

于 2017-03-06T12:24:52.160 回答
0

感谢马特的回复,但我在 Bing Maps 论坛的帮助下弄清楚了如何做到这一点。不是使用 REST API,而是使用 FindLocationsAsync 调用作为 UWP 地图 API 的一部分传递地址、本地地理点以使用起始参考(也称为“提示”位置)和要返回的最大匹配数......这是我使用的完美运行的代码。(请注意,WayPoint 是我模型中的一个对象,用于存储有关路线上航点的各种信息。)

public async Task<List<WayPoint>> FindAddress(string address)
    {
        List<WayPoint> matchingWaypoints = new List<WayPoint>();

        // Use current location as a query hint so nearest addresses are returned.
        BasicGeoposition queryHint = new BasicGeoposition();
        queryHint.Latitude = this.CurrentLocation.Position.Latitude;
        queryHint.Longitude = this.CurrentLocation.Position.Longitude;
        Geopoint hintPoint = new Geopoint(queryHint);

        MapLocationFinderResult result =
           await MapLocationFinder.FindLocationsAsync(address.Trim(), hintPoint, 5);

        // If the query returns results, store in collection of WayPoint objects.
        string addresses = "";
        if (result.Status == MapLocationFinderStatus.Success)
        {
            int i = 0;
            foreach (MapLocation res in result.Locations)
            {
                matchingWaypoints.Add(new WayPoint(i++, res.Address.FormattedAddress, res.Point.Position.Latitude, res.Point.Position.Longitude));
            }
        }
        return matchingWaypoints;
    } 
于 2017-03-07T02:42:59.697 回答