Functions
-
import {stableSort} from 'ol/array';Sort the passed array such that the relative order of equal elements is preserved. See https://en.wikipedia.org/wiki/Sorting_algorithm#Stability for details.
Name Type Description arrArray.<*> The array to sort (modifies original).
compareFncfunction Comparison function.
Type Definitions
-
getZForResolutioncan use a function of this type to determine which nearest resolution to use.This function takes a
{number}representing a value between two array entries, a{number}representing the value of the nearest higher entry and a{number}representing the value of the nearest lower entry as arguments and returns a{number}. If a negative number or zero is returned the lower value will be used, if a positive number is returned the higher value will be used.