Hello,
I try to build simple Map user control in UWP app to allow user to select a coordination exactly like the Windows Map app.
I thought it's simple. It's really hard. Documents are so confusing.

I'm not sure UWP supports Bing Map features fully.
To get autosuggestion box, I try to use BingMapsRESTToolkit,
but it throws parsing error related ":LocalBusiness" like the one reported on May 15, 2020.
https://github.com/microsoft/BingMapsRESTToolkit/issues/46
It's been been an year and it's NOT fixed.
=> IF Anyone know how to avoid this, it's the best solution for me.
So, I gave up using the toolkit and try to use REST API HTTP Request following https://docs.microsoft.com/en-us/bingmaps/rest-services/autosuggest
I can do this, but I cannot figure out how to follow the best practice using SessionKey
from the doc: https://docs.microsoft.com/en-us/bingmaps/rest-services/using-the-rest-services-with-net
Map.CredentialsProvider.GetCredentials((c) =>
{
string sessionKey = c.ApplicationId;
//Generate a request URL for the Bing Maps REST services.
//Use the session key in the request as the Bing Maps key
});
"Map." is WFP map control and UWP map control does NOT have "CredentialProvider.GetCredentials()"
So, I got stuck with UWP map control because BingMapToolkit that implements the best practice is broken and UWP Map control does not support "Map.CredentialProvider.GetCredentials()"
Anyone knows how to fix this? What am I missing here?

