Add auto-import DB script and update connection fallback
This commit is contained in:
@@ -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]
|
||||
]]
|
||||
}
|
||||
}
|
||||
|
||||
]
|
||||
};
|
||||
Reference in New Issue
Block a user