OpenLayers. Control. Button

A very simple button controlfor use with OpenLayers.Control.Panel.  When clicked, the function trigger() is executed.

Inherits from

Use

var button = new OpenLayers.Control.Button({
    displayClass: "MyButton", trigger: myFunction
});
panel.addControls([button]);

Will create a button with CSS class MyButtonItemInactive, that will call the function MyFunction() when clicked.

Controls affect the display or behavior of the map.
Close