4

我使用GeocodeQuery来查找搜索词的坐标。

// Get your current position
var myPosition = await new Geolocator().GetGeopositionAsync(TimeSpan.FromMinutes(1), TimeSpan.FromSeconds(10));

// Define search
var geoQuery = new GeocodeQuery();
geoQuery.SearchTerm = "Taipei";
geoQuery.GeoCoordinate = new GeoCoordinate(myPosition.Coordinate.Latitude, myPosition.Coordinate.Longitude);
geoQuery.QueryCompleted += (s, e) => {
  if (e.Error == null && e.Result.Count > 0) {
    // e.Result will contain a list of coordinates of matched places.
    // You can show them on a map control , e.g.
    myMap.Center = e.Result[0].GeoCoordinate;
    myMap.ZoomLevel = 2;
  }
}
geoQuery.QueryAsync();

它运作良好!我成功获得了一些关于“台北”的位置,

但是,当我在繁体中文“台北”中搜索“台北”时,

我在回调函数 geoQuery.QueryCompleted 中一无所获,

e.Result.Count = 0

我应该如何处理不同语言的 GeocodeQuery 搜索?谢谢你的帮助!

4

1 回答 1

1

地理编码查询使用系统语言来执行搜索。如果您将手机语言更改为中文,您应该会得到结果。

于 2013-06-16T15:13:09.857 回答