package.resolution.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ol Show documentation
Show all versions of ol Show documentation
OpenLayers mapping library
The newest version!
/**
* @module ol/resolution
*/
/**
* @typedef {number|Array} ResolutionLike
*/
/**
* @param {ResolutionLike} resolution Resolution.
* @return {number} Resolution.
*/
export function fromResolutionLike(resolution) {
if (Array.isArray(resolution)) {
return Math.min(...resolution);
}
return resolution;
}