feat: implement map visualization, layer management, and searching for poverty data records

This commit is contained in:
Syariffullah
2026-06-06 14:25:49 +07:00
parent 977dec4e36
commit 5585c34c5c
11 changed files with 704 additions and 47 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"nama": "Joko Widodo",
"kategori_bantuan": "Pemberdayaan",
"jumlah_jiwa": 2
},
"geometry": {
"type": "Point",
"coordinates": [109.343, -0.027]
}
},
{
"type": "Feature",
"properties": {
"nama": "Mega Wati",
"kategori_bantuan": "Makan",
"jumlah_jiwa": 6
},
"geometry": {
"type": "Point",
"coordinates": [109.344, -0.029]
}
}
]
}