Files
openlayers/src/ol/style/symbolizer.js
2013-08-15 10:37:18 -04:00

20 lines
416 B
JavaScript

goog.provide('ol.style.Symbolizer');
goog.require('ol.Feature');
goog.require('ol.style.Literal');
/**
* @constructor
*/
ol.style.Symbolizer = function() {};
/**
* @param {ol.geom.GeometryType} type Geometry type.
* @param {ol.Feature=} opt_feature Feature for evaluating expressions.
* @return {ol.style.Literal} Literal symbolizer.
*/
ol.style.Symbolizer.prototype.createLiteral = goog.abstractMethod;