UNPKG

ol

Version:

OpenLayers mapping library

19 lines (16 loc) 330 B
/** * @module ol/resolution */ /** * @typedef {number|Array<number>} ResolutionLike */ /** * @param {ResolutionLike} resolution Resolution. * @return {number} Resolution. */ export function fromResolutionLike(resolution) { if (Array.isArray(resolution)) { return Math.min(...resolution); } return resolution; }