Eric Francis
Eric Francis

Reputation: 24287

How to customize dashboard with bing maps

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

Answers (1)

Bojin Li
Bojin Li

Reputation: 5799

Override the default CSS of the Bing Maps Nav bar:

.OverlaysTL {
    left: auto !important;
    right: 160px !important;
}

Upvotes: 4

Related Questions