Files
openlayers/src/ol/style/fillstyle.js
2013-11-28 10:02:30 +01:00

18 lines
281 B
JavaScript

goog.provide('ol.style.Fill');
goog.require('ol.color');
/**
* @constructor
* @param {ol.style.FillOptions} options Options.
*/
ol.style.Fill = function(options) {
/**
* @type {ol.Color|string}
*/
this.color = goog.isDef(options.color) ? options.color : null;
};