This commit is contained in:
Azgaar 2020-05-26 01:48:11 +03:00
commit e75a12f90d
2 changed files with 3 additions and 2 deletions

View file

@ -351,7 +351,8 @@ function saveGeoJSON_Cells() {
data += " \"state\": \""+cells.state[i]+"\",\n";
data += " \"province\": \""+cells.province[i]+"\",\n";
data += " \"culture\": \""+cells.culture[i]+"\",\n";
data += " \"religion\": \""+cells.religion[i]+"\"\n";
data += " \"religion\": \""+cells.religion[i]+"\",\n";
data += " \"neighbors\": ["+cells.c[i]+"]\n";
data +=" }\n},\n";
});

View file

@ -49,7 +49,7 @@ function showElevationProfile(data, routeLen, isRiver) {
const chartHeight = 300; // height of our land/sea profile, excluding the biomes data below
const xOffset = 80;
const yOffset = 20; // this is our drawing starting point from top-left (y = 0) of SVG
const yOffset = 80; // this is our drawing starting point from top-left (y = 0) of SVG
const biomesHeight = 40;