Files
openlayers/src/ol/style/IconAnchorUnits.js
Frederic Junod 0bc28323c8 Simplify default export
This removes unnecessary variable declarations where the default object is an object.
2017-12-15 15:21:25 +01:00

13 lines
185 B
JavaScript

/**
* @module ol/style/IconAnchorUnits
*/
/**
* Icon anchor units. One of 'fraction', 'pixels'.
* @enum {string}
*/
export default {
FRACTION: 'fraction',
PIXELS: 'pixels'
};