gpt4 book ai didi

c# - 如何在 Windows 8.1 App 中使用地理编码?

转载 作者:太空宇宙 更新时间:2023-11-03 21:34:19 25 4
gpt4 key购买 nike

我需要从地址获取地理坐标。我试着走这条路: http://www.braincastexception.com/wp7-web-services-first-part-geocodeservice/但有一些错误。

1) 错误的论点:

GeocodeServiceClient geocodeService = new GeocodeServiceClient("BasicHttpBinding_IGeocodeService");

2) 事件不存在:

geocodeService.GeocodeCompleted += (sender, e) => geoCode_GeocodeCompleted(sender, e);

本文涉及 Windows Phone 7,但我使用的是 Windows 8.1 应用程序。也许 Windows 8.1 App 有另一种解决方案?我该怎么办?

最佳答案

要进行地理编码,请执行以下操作:

async void GetLocation(string address, Geopoint queryHintPoint)
{
var result = await MapLocationFinder.FindLocationsAsync(address, queryHintPoint);

// Get the coordinates
if(result.Status == MapLocationFinderStatus.Success)
{
double lat = result.Locations[0].Point.Position.Latitude;
double lon = result.Locations[0].Point.Position.Longitude;
}
}

并反向地理编码:

async void GetLocationName(Geopoint yourLocation)
{
var result = await MapLocationFinder.FindLocationsAtAsync(yourLocation);

// Get the address
if(result.Status == MapLocationFinderStatus.Success)
{
string address = result.Locations[0].Address.StreetNumber + result.Locations[0].Address.Street;
}
}

查看这篇文章:http://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn631249.aspx

它解释了如何在 Windows Phone 8.1 map 中获取位置。

关于c# - 如何在 Windows 8.1 App 中使用地理编码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22514002/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com