I have an application in VB .Net and I am trying to use the Bing Tiles. I have a valid Bing token but I am not sure how to pass the token to the provider.
I found the following directions in the documentation, but I'm not sure how to implement this in VB .Net.
// to access Bing Maps providers
new GlobalSettings() { BingApiKey = "your_key"};
Thanks for any assistance.
ToddH
Comments: ** Comment from web user: sleschinski **
I found the following directions in the documentation, but I'm not sure how to implement this in VB .Net.
// to access Bing Maps providers
new GlobalSettings() { BingApiKey = "your_key"};
Thanks for any assistance.
ToddH
Comments: ** Comment from web user: sleschinski **
I guess something like:
```
Dim gs as new GlobalSettings
gs.BingApiKey = "your_key"
```
BTW, you should ask questions at Discussions section. This section is for bugs.