46 lines
697 B
JavaScript
46 lines
697 B
JavaScript
goog.provide('ol.css');
|
|
|
|
|
|
/**
|
|
* The CSS class for hidden feature.
|
|
*
|
|
* @const
|
|
* @type {string}
|
|
*/
|
|
ol.css.CLASS_HIDDEN = 'ol-hidden';
|
|
|
|
|
|
/**
|
|
* The CSS class that we'll give the DOM elements to have them selectable.
|
|
*
|
|
* @const
|
|
* @type {string}
|
|
*/
|
|
ol.css.CLASS_SELECTABLE = 'ol-selectable';
|
|
|
|
/**
|
|
* The CSS class that we'll give the DOM elements to have them unselectable.
|
|
*
|
|
* @const
|
|
* @type {string}
|
|
*/
|
|
ol.css.CLASS_UNSELECTABLE = 'ol-unselectable';
|
|
|
|
|
|
/**
|
|
* The CSS class for unsupported feature.
|
|
*
|
|
* @const
|
|
* @type {string}
|
|
*/
|
|
ol.css.CLASS_UNSUPPORTED = 'ol-unsupported';
|
|
|
|
|
|
/**
|
|
* The CSS class for controls.
|
|
*
|
|
* @const
|
|
* @type {string}
|
|
*/
|
|
ol.css.CLASS_CONTROL = 'ol-control';
|