Icon symbolizer extends point symbolizer

This commit is contained in:
Tim Schaub
2013-10-09 09:01:30 -06:00
parent 7be90877fe
commit e36c53dd23
2 changed files with 4 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ goog.require('ol.style.Point');
* @param {ol.style.IconOptions} options Icon options.
*/
ol.style.Icon = function(options) {
goog.base(this);
goog.asserts.assert(options.url, 'url must be set');
@@ -91,6 +92,7 @@ ol.style.Icon = function(options) {
options.zIndex : new ol.expr.Literal(options.zIndex);
};
goog.inherits(ol.style.Icon, ol.style.Point);
/**