WbkPropertyBarView.showMapMaster

Syntax

showMapMaster();

Description

The showMapMaster method shows map setup wizard.

Example

To execute the example, the HTML page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component), and all the workbook views must be displayed. Display map setup wizard:

// Get workbook properties panel
propertyBarView = workbookBox.getPropertyBarView();
// Hide all wizards
propertyBarView.hideAllMasters();
// Display map setup wizard
propertyBarView.showMapMaster();

After executing the example the workbook side panel displays the map setup wizard.

See also:

WbkPropertyBarView