Add image drawing functions to batch

This commit is contained in:
Tom Payne
2013-11-10 01:37:58 +01:00
parent 85efa61823
commit a722f558fe

View File

@@ -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