Add image drawing skeleton to canvas

This commit is contained in:
Tom Payne
2013-11-10 01:38:36 +01:00
parent a722f558fe
commit 2c73d75309

View File

@@ -129,6 +129,12 @@ ol.replay.canvas.Batch.prototype.draw = function(context, transform) {
};
/**
* @inheritDoc
*/
ol.replay.canvas.Batch.prototype.drawImage = goog.abstractMethod;
/**
* @inheritDoc
*/
@@ -142,6 +148,18 @@ ol.replay.canvas.Batch.prototype.drawMultiLineStringGeometry =
goog.abstractMethod;
/**
* @inheritDoc
*/
ol.replay.canvas.Batch.prototype.drawPointGeometry = goog.abstractMethod;
/**
* @inheritDoc
*/
ol.replay.canvas.Batch.prototype.drawMultiPointGeometry = goog.abstractMethod;
/**
* @inheritDoc
*/