Add text replay skeleton
This commit is contained in:
@@ -293,6 +293,12 @@ ol.render.canvas.Immediate.prototype.setImageStyle = function(imageStyle) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritDoc
|
||||||
|
*/
|
||||||
|
ol.render.canvas.Immediate.prototype.setTextStyle = goog.abstractMethod;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @const
|
* @const
|
||||||
* @private
|
* @private
|
||||||
|
|||||||
@@ -232,6 +232,12 @@ ol.render.canvas.Replay.prototype.setFillStrokeStyle = goog.abstractMethod;
|
|||||||
ol.render.canvas.Replay.prototype.setImageStyle = goog.abstractMethod;
|
ol.render.canvas.Replay.prototype.setImageStyle = goog.abstractMethod;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritDoc
|
||||||
|
*/
|
||||||
|
ol.render.canvas.Replay.prototype.setTextStyle = goog.abstractMethod;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @constructor
|
* @constructor
|
||||||
|
|||||||
@@ -79,3 +79,10 @@ ol.render.IRender.prototype.setFillStrokeStyle =
|
|||||||
*/
|
*/
|
||||||
ol.render.IRender.prototype.setImageStyle = function(imageStyle) {
|
ol.render.IRender.prototype.setImageStyle = function(imageStyle) {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {ol.style.Text} textStyle Text style.
|
||||||
|
*/
|
||||||
|
ol.render.IRender.prototype.setTextStyle = function(textStyle) {
|
||||||
|
};
|
||||||
|
|||||||
@@ -10,7 +10,8 @@ goog.require('ol.render.IRender');
|
|||||||
ol.render.ReplayType = {
|
ol.render.ReplayType = {
|
||||||
IMAGE: 'Image',
|
IMAGE: 'Image',
|
||||||
LINE_STRING: 'LineString',
|
LINE_STRING: 'LineString',
|
||||||
POLYGON: 'Polygon'
|
POLYGON: 'Polygon',
|
||||||
|
TEXT: 'Text'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user