2017-08-19 26 views
-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; 
} 

答えて

1

移動を逆にしてキーを作成します。 は、その後、あなたのアプリにそれを追加します。

MapService.ServiceToken = "MyKey"; 
関連する問題