diff --git a/patches/frontend/src/conf/dashboard.config.ts b/patches/frontend/src/conf/dashboard.config.ts index 1d5b99d..4423fa3 100644 --- a/patches/frontend/src/conf/dashboard.config.ts +++ b/patches/frontend/src/conf/dashboard.config.ts @@ -3,6 +3,8 @@ export const dashboardData = { name: 'Wasseiges', area: 24.48, population: 2996, + lat: 50.6173, + lon: 5.0206, }, landuse: [ { @@ -56,7 +58,7 @@ export const dashboardData = { interface landuse { name: string, - area: number + area: number, } interface production { @@ -69,7 +71,9 @@ export type dashboardDataType = { base: { name: string, area: number, - population: number + population: number, + lat: number, + lon: number, }, landuse: landuse[], production: production[],