Remove ol.Observable#unByKey

This commit is contained in:
Frederic Junod
2017-02-07 08:37:39 +01:00
parent 32a154a114
commit a6e17318d3
2 changed files with 11 additions and 12 deletions

View File

@@ -6,6 +6,17 @@
The deprecated `ol.animation` functions and `map.beforeRender()` method have been removed. Use `view.animate()` instead.
The `unByKey()` method has been removed from `ol.Observable` instances. Use the `ol.Observable.unByKey()` static function instead.
```js
var key = map.on('moveend', function() { ...});
map.unByKey(key);
```
New code:
```js
var key = map.on('moveend', function() { ...});
ol.Observable.unByKey(key);
```
#### Simplified `ol.View#fit()` API
In most cases, it is no longer necessary to provide an `ol.Size` (previously the 2nd argument) to `ol.View#fit()`. By default, the size of the first map that uses the view will be used. If you want to specify a different size, it goes in the options now (previously the 3rd argument, now the 2nd).

View File

@@ -154,15 +154,3 @@ ol.Observable.prototype.un = function(type, listener, opt_this) {
ol.events.unlisten(this, /** @type {string} */ (type), listener, opt_this);
}
};
/**
* Removes an event listener using the key returned by `on()` or `once()`.
* Note that using the {@link ol.Observable.unByKey} static function is to
* be preferred.
* @param {ol.EventsKey|Array.<ol.EventsKey>} key The key returned by `on()`
* or `once()` (or an array of keys).
* @function
* @api
*/
ol.Observable.prototype.unByKey = ol.Observable.unByKey;