Invalid Credentials on MapLocationFinderResult uwp c#

亡梦爱人 提交于 2019-12-31 05:24:29

问题


I am having a strange problem with the use of MapLocationFinder.

I am using MapLocationFinder to retrieve longitude and latitude based on string address:

string address = ""; // Any address here

var locFinderResult = await MapLocationFinder.FindLocationsAsync(address, new Geopoint(new BasicGeoposition()));

After this, I use Laucher to start "drive to" application and get navigation map:

var geoPos = locFinderResult.Locations[0].Point.Position;

var url = $"ms-drive-to:?destination.latitude={geoPos.Latitude.ToString(CultureInfo.InvariantCulture)}&destination.longitude={geoPos.Longitude.ToString(CultureInfo.InvariantCulture)}&destination.name={address}";
var driveToUri = new Uri(url);

await Launcher.LaunchUriAsync(driveToUri);

Up until recently this worked just fine on all devices. I was not required any token or anything, since I am not implementing Map control in XAML. However, a couple days ago I started receiving "InvalidCredentials" response for locFinderResult. It still works on only one device. I have never used any credentials so I don't know why it only works on this one.

Does anyone knows what could cause this issue?


回答1:


It looks like from some recent time Microsoft requires you to get the key from the Bing Maps Developers Center to use this functionality. See, the instructions: https://docs.microsoft.com/en-us/windows/uwp/maps-and-location/authentication-key




回答2:


Go to https://www.bingmapsportal.com and create a key. Then add it to your app.

MapService.ServiceToken = "MyKey";


来源:https://stackoverflow.com/questions/44326157/invalid-credentials-on-maplocationfinderresult-uwp-c-sharp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!