Eric Francis
Eric Francis

Reputation: 24287

How do I get rid of the Navigation bar in Bing Maps?

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. What I want to get rid of

Upvotes: 3

Views: 2928

Answers (1)

Eric Francis
Eric Francis

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

Related Questions