Files
openlayers/src/ol/render/ReplayGroup.js
2018-01-15 09:47:53 +01:00

27 lines
512 B
JavaScript

/**
* @module ol/render/ReplayGroup
*/
/**
* Base class for replay groups.
* @constructor
* @abstract
*/
const ReplayGroup = function() {};
/**
* @abstract
* @param {number|undefined} zIndex Z index.
* @param {ol.render.ReplayType} replayType Replay type.
* @return {ol.render.VectorContext} Replay.
*/
ReplayGroup.prototype.getReplay = function(zIndex, replayType) {};
/**
* @abstract
* @return {boolean} Is empty.
*/
ReplayGroup.prototype.isEmpty = function() {};
export default ReplayGroup;