dashboard: add data in config
This commit is contained in:
parent
dc42f4e5d5
commit
426311aaaa
@ -3,6 +3,8 @@ export const dashboardData = {
|
|||||||
name: 'Wasseiges',
|
name: 'Wasseiges',
|
||||||
area: 24.48,
|
area: 24.48,
|
||||||
population: 2996,
|
population: 2996,
|
||||||
|
lat: 50.6173,
|
||||||
|
lon: 5.0206,
|
||||||
},
|
},
|
||||||
landuse: [
|
landuse: [
|
||||||
{
|
{
|
||||||
@ -56,7 +58,7 @@ export const dashboardData = {
|
|||||||
|
|
||||||
interface landuse {
|
interface landuse {
|
||||||
name: string,
|
name: string,
|
||||||
area: number
|
area: number,
|
||||||
}
|
}
|
||||||
|
|
||||||
interface production {
|
interface production {
|
||||||
@ -69,7 +71,9 @@ export type dashboardDataType = {
|
|||||||
base: {
|
base: {
|
||||||
name: string,
|
name: string,
|
||||||
area: number,
|
area: number,
|
||||||
population: number
|
population: number,
|
||||||
|
lat: number,
|
||||||
|
lon: number,
|
||||||
},
|
},
|
||||||
landuse: landuse[],
|
landuse: landuse[],
|
||||||
production: production[],
|
production: production[],
|
||||||
|
Loading…
Reference in New Issue
Block a user