19 lines
435 B
TypeScript
19 lines
435 B
TypeScript
/**
|
|
* Initial zoom level for the map
|
|
*/
|
|
export const INITIAL_ZOOM = 17;
|
|
|
|
/**
|
|
* MapTiler style URL for the map
|
|
*/
|
|
export const MAP_STYLE = typeof import.meta !== 'undefined' && import.meta.env?.VITE_MAPTILER_STYLE ? import.meta.env.VITE_MAPTILER_STYLE : '';
|
|
|
|
export const STATUSES = {
|
|
SUCCESS: "success",
|
|
ERROR: "error",
|
|
};
|
|
|
|
export const DB_ERROR_CODES = {
|
|
P2002: "P2002", // "Unique constraint failed on the {constraint}"
|
|
};
|