Add image drawing functions to batch
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user