15 lines
247 B
JavaScript
15 lines
247 B
JavaScript
goog.provide('ol.style.PointLiteral');
|
|
|
|
goog.require('ol.style.Literal');
|
|
|
|
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends {ol.style.Literal}
|
|
*/
|
|
ol.style.PointLiteral = function() {
|
|
goog.base(this);
|
|
};
|
|
goog.inherits(ol.style.PointLiteral, ol.style.Literal);
|