Files
History-client/lib/geo/constants.ts
2026-04-21 16:07:21 +07:00

15 lines
278 B
TypeScript

import type { FeatureCollection } from "@/types/geo";
export const WORLD_BBOX = {
minLng: -180,
minLat: -90,
maxLng: 180,
maxLat: 90,
} as const;
export const EMPTY_FEATURE_COLLECTION: FeatureCollection = {
type: "FeatureCollection",
features: [],
};