finish refactor pre merge
This commit is contained in:
14
lib/geo/constants.ts
Normal file
14
lib/geo/constants.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
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: [],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user