Search
MapView.maxZoomLevel Property
See Also
 






Gets or sets the maximum zoom of the map.

Namespace: MindFusion.Mapping
File: MapView.js

 Syntax

JavaScript  Copy Code

get maxZoomLevel() {}

 Property Value

Number. The maxmimum zoom level.

 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. Then it sets the minimum and maximum zoom levels:

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.maxZoomLevel = 20;
view.minZoomLevel = 2;

 See Also