ThinkGeo Cloud
ThinkGeo UI Controls
ThinkGeo Open Source
Help and Support
External Resources
ThinkGeo Cloud
ThinkGeo UI Controls
ThinkGeo Open Source
Help and Support
External Resources
This is an old revision of the document!
This guide helps you to create a bing maps key and apply it in Map Suite.
Basically, there are two types of bing maps key. One is Basic Key, and the other one is Bing Maps Enterprise Key. ( see pic1 below )
Read more details about how to create a new key.
// Bing maps core by using BingMapsTileOverlay() BingMapsTileOverlay bingMapsOverlay = new BingMapsTileOverlay(); bingMapsOverlay.MapStyle = BingMapsMapType.AerialWithLabels; bingMapsOverlay.Name = "Bing Maps Aerial"; bingMapsOverlay.ApplicationId = System.Configuration.ConfigurationManager.AppSettings["BingMapKey"]; bingMapsOverlay.IsVisible = false; wpfMap1.Overlays.Add(bingMapsOverlay); // where you can add the keys <appSettings> <add key="BingMapKey" value="Place Your Bing Maps Key Here" /> </appSettings>