Reputation: 24287
I have
showDashboard : true
It creates the map navigator in the upper left corner.
I have a sidebar there. I would like to move the navigator to the right.
Upvotes: 1
Views: 702
Reputation: 5799
Override the default CSS of the Bing Maps Nav bar:
.OverlaysTL {
left: auto !important;
right: 160px !important;
}
Upvotes: 4