diff --git a/src/ol/replay/ireplay.js b/src/ol/replay/ireplay.js index 4817dc77a8..dca08db4db 100644 --- a/src/ol/replay/ireplay.js +++ b/src/ol/replay/ireplay.js @@ -22,6 +22,22 @@ ol.replay.IBatch = function() { }; +/** + * @param {number} x X. + * @param {number} y Y. + * @param {Image|HTMLCanvasElement|HTMLVideoElement} image Image. + */ +ol.replay.IBatch.prototype.drawImage = function(x, y, image) { +}; + + +/** + * @param {ol.geom.Point} pointGeometry Point geometry. + */ +ol.replay.IBatch.prototype.drawPointGeometry = function(pointGeometry) { +}; + + /** * @param {ol.geom.LineString} lineStringGeometry Line string geometry. */ @@ -39,6 +55,14 @@ ol.replay.IBatch.prototype.drawMultiLineStringGeometry = }; +/** + * @param {ol.geom.MultiPoint} multiPointGeometry MultiPoint geometry. + */ +ol.replay.IBatch.prototype.drawMultiPointGeometry = + function(multiPointGeometry) { +}; + + /** * @param {ol.geom.MultiPolygon} multiPolygonGeometry Multi polygon geometry. */ @@ -63,6 +87,13 @@ ol.replay.IBatch.prototype.setFillStrokeStyle = }; +/** + * @param {?ol.style.Image} imageStyle Image style. + */ +ol.replay.IBatch.prototype.setImageStyle = function(imageStyle) { +}; + + /** * @interface