WbkPropertyBarView.getMapMaster

Syntax

getMapMaster(mapView: PP.Exp.Ui.EaxMapView);

Parameters

mapView. Component for map displaying.

Description

The getMapMaster method returns a map wizard.

Comments

This method returns an object of the PP.Ui.MapMaster type.

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. Show map wizard:

// Get workbook properties panel
var propertyBarView = workbookBox.getPropertyBarView();
// Hide all wizards
propertyBarView.hideAllMasters();	
// Determine map wizard variable
var mapMaster = propertyBarView.getMapMaster(workbookBox.getDataView().getMapView());
// Display map wizard
mapMaster.show();

Map wizard is shown as the result of example execution:

See also:

WbkPropertyBarView