Search
MapView.showLayerController Property
See Also
 






Gets or sets the visibility of the built-in layer controller.

Namespace: MindFusion.Mapping
File: MapView.js

 Syntax

JavaScript  Copy Code

get showLayerController() {}

 Property Value

Boolean. True if the controller is visible, otherwise false.

 Example

The following code creates a new MapView using a <DIV> element called "mapview" that we've declared in the HTML code of the page and enables its layer and zoom controllers:

JavaScript  Copy Code

var m = MindFusion.Mapping;

// create a new instance of the mapView
var view = new m.MapView(document.getElementById("mapView"));
view.theme = "light";
view.showLayerController = true;
view.showZoomController = true;
view.zoomStep = 1;

 See Also