Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 1.15 KB

CHANGELOG.md

File metadata and controls

29 lines (25 loc) · 1.15 KB

Change log

v1.1.3 2018-02-07

This is the last v1 release.

  • Next release (v2) will use ES6 module syntax #33.
  • Switch to the ./dist/ol-ext.js to keep on running on next version.

v1.1.2 2017-12

change project name ol-ext is now ol-ext

v1.0.0 2016-11-12

see #8 and #10

  • ol.control.Toggle inherits from ol.control.Button (this means you have to add the ol.control.Button.js to your pages).
  • Move subbar from ol.control.Bar to ol.control.Toggle.
    Instead of:
var c = new ol.control.Toggle ();
bar.addControl (c, subbar);

use:

var c = new ol.control.Toggle ({ bar: subbar });
bar.addControl (c);
  • add autoActive option to ol.control.Toggle to auto activate the control when inserted in a subbar
  • add autoDeactivate option to ol.control.Bar to auto deactivate all controls in a subbar when desactivating it