Add getters to ol.style.Fill

This commit is contained in:
Éric Lemoine
2013-12-19 11:41:38 +01:00
parent 8fdd178d0a
commit 16047ff852
4 changed files with 17 additions and 6 deletions
+10 -1
View File
@@ -13,7 +13,16 @@ ol.style.Fill = function(opt_options) {
var options = goog.isDef(opt_options) ? opt_options : {};
/**
* @private
* @type {ol.Color|string}
*/
this.color = goog.isDef(options.color) ? options.color : null;
this.color_ = goog.isDef(options.color) ? options.color : null;
};
/**
* @return {ol.Color|string} Color.
*/
ol.style.Fill.prototype.getColor = function() {
return this.color_;
};