All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.resolution.js Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy