This commit is contained in:
Nama Kamu
2026-06-10 19:40:58 +07:00
parent 9d23137b3f
commit 9404230e0b
42 changed files with 7972 additions and 0 deletions
+72
View File
@@ -0,0 +1,72 @@
var statesData = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {"name": "Pontianak Barat", "density": 4200},
"geometry": {
"type": "Polygon",
"coordinates": [[
[109.30,-0.01],[109.33,-0.01],[109.33,-0.05],[109.30,-0.05],[109.30,-0.01]
]]
}
},
{
"type": "Feature",
"properties": {"name": "Pontianak Kota", "density": 9500},
"geometry": {
"type": "Polygon",
"coordinates": [[
[109.33,-0.01],[109.36,-0.01],[109.36,-0.05],[109.33,-0.05],[109.33,-0.01]
]]
}
},
{
"type": "Feature",
"properties": {"name": "Pontianak Selatan", "density": 7800},
"geometry": {
"type": "Polygon",
"coordinates": [[
[109.33,-0.05],[109.36,-0.05],[109.36,-0.08],[109.33,-0.08],[109.33,-0.05]
]]
}
},
{
"type": "Feature",
"properties": {"name": "Pontianak Tenggara", "density": 5200},
"geometry": {
"type": "Polygon",
"coordinates": [[
[109.36,-0.05],[109.40,-0.05],[109.40,-0.08],[109.36,-0.08],[109.36,-0.05]
]]
}
},
{
"type": "Feature",
"properties": {"name": "Pontianak Timur", "density": 4600},
"geometry": {
"type": "Polygon",
"coordinates": [[
[109.36,-0.01],[109.40,-0.01],[109.40,-0.05],[109.36,-0.05],[109.36,-0.01]
]]
}
},
{
"type": "Feature",
"properties": {"name": "Pontianak Utara", "density": 3000},
"geometry": {
"type": "Polygon",
"coordinates": [[
[109.33,0.01],[109.38,0.01],[109.38,-0.01],[109.33,-0.01],[109.33,0.01]
]]
}
}
]
};