-1
を逆転。私は公式のサンプルからコードを取った:UWPで「InvalidCredentials」エラーは、私は私のUWPアプリでこのコードを実行しようとすると、私は次のエラーを取得していGEOコードAPI
「InvalidCredentials」エラーが地理コードAPI https://www.bingmapsportal.comへ
BasicGeoposition location = new BasicGeoposition();
location.Latitude = 47.643;
location.Longitude = -122.131;
Geopoint pointToReverseGeocode = new Geopoint(location);
// Reverse geocode the specified geographic location.
MapLocationFinderResult result = await MapLocationFinder.FindLocationsAtAsync(pointToReverseGeocode);
// If the query returns results, display the name of the town
// contained in the address of the first result.
if (result.Status == MapLocationFinderStatus.Success)
{
tbOutputText.Text = "town = " + result.Locations[0].Address.Town;
}