Add ol.render.IRender#drawCircleGeometry
This commit is contained in:
@@ -379,6 +379,12 @@ ol.render.canvas.Replay.prototype.reverseHitDetectionInstructions_ =
|
|||||||
ol.render.canvas.Replay.prototype.drawAsync = goog.abstractMethod;
|
ol.render.canvas.Replay.prototype.drawAsync = goog.abstractMethod;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritDoc
|
||||||
|
*/
|
||||||
|
ol.render.canvas.Replay.prototype.drawCircleGeometry = goog.abstractMethod;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -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.Feature} feature Feature.
|
||||||
* @param {ol.style.Style} style Style.
|
* @param {ol.style.Style} style Style.
|
||||||
|
|||||||
Reference in New Issue
Block a user