Files
openlayers/src/ol/render/ReplayGroup.js
Tim Schaub 7f47883c48 Transformed
2017-12-12 06:53:18 -07:00

27 lines
558 B
JavaScript

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