Files
openlayers/src/ol/style/iconanchorunits.js
2016-12-27 10:26:11 -07:00

11 lines
195 B
JavaScript

goog.provide('ol.style.IconAnchorUnits');
/**
* Icon anchor units. One of 'fraction', 'pixels'.
* @enum {string}
*/
ol.style.IconAnchorUnits = {
FRACTION: 'fraction',
PIXELS: 'pixels'
};