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!
Note: If you are using Map Suite 9.0 or previous versions of Map Suite product, please go to MapSuite 9.0 Wiki. The current page is for Map Suite 10.0 and future versions. It has different assemblies, licensing strategy and ways of distribution, and more. although the majority of previously built code should work without modification assuming the new namespaces are added. For guidance on upgrading your existing code to Map Suite 10, please check out MapSuite 10 Upgrade Guide.
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.
Download Sample Source Code
// 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>