ASP.NET Pack Programmer's Guide
Control Constructor
See Also
 





Initializes a new instance of the Control class.

Namespace: MindFusion.Mapping
Package: Control.js

 Syntax

JavaScript  Copy Code

function Control ([element])

 Parameters

element
Optional.

HTMLElement. The control's associated Dom element.

 Example

The following example creates a new MapView using a <DIV> element called "mapview" that we've declared in the HTML code of the page. The MapView derives from Control.

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";

 See Also

Control Class
MindFusion.Mapping Namespace