Gets or sets the Y-coordinate of the location of this Control.
Namespace: MindFusion.Mapping
Package: Control.js
JavaScript
![]() |
---|
Object.defineProperty(Control.prototype, "top", { value: Unit }); |
Unit. The Y-coordinate of the control's location.
The following example creates a new MapView using a <DIV> element called "mapview" that we've declared in the HTML code of the page. Then it checks if the Control's top coordinate is greater than 100 pixels. The MapView class derives from Control.
JavaScript
![]() |
---|
var m = MindFusion.Mapping; // create a new instance of the mapView
|