diff --git a/src/types/Position.ts b/src/types/Position.ts index cd2d1aadc..8bdccd4ff 100644 --- a/src/types/Position.ts +++ b/src/types/Position.ts @@ -1,4 +1,4 @@ /** - * Position is a tuple of latitude and longitude. + * Position is a tuple of longitude and latitude, e.g. [longitude, latitude] */ export type Position = [number, number] | number[];