17 lines
307 B
JavaScript
17 lines
307 B
JavaScript
/**
|
|
* @module ol/control/ScaleLineUnits
|
|
*/
|
|
|
|
/**
|
|
* Units for the scale line. Supported values are `'degrees'`, `'imperial'`,
|
|
* `'nautical'`, `'metric'`, `'us'`.
|
|
* @enum {string}
|
|
*/
|
|
export default {
|
|
DEGREES: 'degrees',
|
|
IMPERIAL: 'imperial',
|
|
NAUTICAL: 'nautical',
|
|
METRIC: 'metric',
|
|
US: 'us'
|
|
};
|