12 lines
183 B
JavaScript
12 lines
183 B
JavaScript
goog.provide('ol.layer.VectorLayerRenderIntent');
|
|
|
|
|
|
/**
|
|
* @enum {string}
|
|
*/
|
|
ol.layer.VectorLayerRenderIntent = {
|
|
DEFAULT: 'default',
|
|
HIDDEN: 'hidden',
|
|
SELECTED: 'selected'
|
|
};
|