Add ol.render.IRender#drawCircleGeometry

This commit is contained in:
Tom Payne
2014-01-12 20:38:06 +01:00
parent 3647f13e2e
commit b2b74a5ee6
2 changed files with 15 additions and 0 deletions

View File

@@ -379,6 +379,12 @@ ol.render.canvas.Replay.prototype.reverseHitDetectionInstructions_ =
ol.render.canvas.Replay.prototype.drawAsync = goog.abstractMethod;
/**
* @inheritDoc
*/
ol.render.canvas.Replay.prototype.drawCircleGeometry = goog.abstractMethod;
/**
* @inheritDoc
*/

View File

@@ -19,6 +19,15 @@ ol.render.IRender.prototype.drawAsync = function(zIndex, callback) {
};
/**
* @param {ol.geom.Circle} circleGeometry Circle geometry.
* @param {Object} data Opaque data object,
*/
ol.render.IRender.prototype.drawCircleGeometry =
function(circleGeometry, data) {
};
/**
* @param {ol.Feature} feature Feature.
* @param {ol.style.Style} style Style.