/** * Position is a tuple of longitude and latitude, e.g. [longitude, latitude] */ export type Position = [number, number] | number[];