22 lines
411 B
JavaScript
22 lines
411 B
JavaScript
/**
|
|
* @module ol/renderer/canvas/common
|
|
*/
|
|
|
|
/**
|
|
* Context options to disable image smoothing.
|
|
* @type {Object}
|
|
*/
|
|
export const IMAGE_SMOOTHING_DISABLED = {
|
|
imageSmoothingEnabled: false,
|
|
msImageSmoothingEnabled: false,
|
|
};
|
|
|
|
/**
|
|
* Context options to enable image smoothing.
|
|
* @type {Object}
|
|
*/
|
|
export const IMAGE_SMOOTHING_ENABLED = {
|
|
imageSmoothingEnabled: true,
|
|
msImageSmoothingEnabled: true,
|
|
};
|