Reputation: 24287
How do I get rid of the navigation bar at the top of Bing Maps? The bar has Road and Automatic selectors as well as Bird's Eye and Aerial selectors.
Upvotes: 3
Views: 2928
Reputation: 24287
Microsoft.Maps.loadModule('Microsoft.Maps.Themes.BingTheme', { callback: function()
{
map = new Microsoft.Maps.Map(document.getElementById('SDKmap'),
{
credentials: 'Your Bing Maps Key',
theme: new Microsoft.Maps.Themes.BingTheme(),
showMapTypeSelector:false
});
}});
Upvotes: 2