exporting type (island, lake, etc.) as well now

This commit is contained in:
Tom Vogt 2019-09-17 06:51:26 +02:00
parent be8dfac5fb
commit 096160a80f

View file

@ -436,6 +436,7 @@ function saveGeoJSON_Cells() {
data += " \"id\": \""+i+"\",\n";
data += " \"height\": \""+height+"\",\n";
data += " \"biome\": \""+cells.biome[i]+"\",\n";
data += " \"type\": \""+pack.features[cells.f[i]].type+"\",\n";
data += " \"population\": \""+getFriendlyPopulation(i)+"\",\n";
data += " \"state\": \""+cells.state[i]+"\",\n";
data += " \"province\": \""+cells.province[i]+"\",\n";