Also write zoom factor to metadata file.

This commit is contained in:
Martijn Versteegh 2018-11-30 13:10:35 +01:00
parent e4397212e9
commit 1ab180c5d0
1 changed files with 1 additions and 0 deletions

View File

@ -287,6 +287,7 @@ void TileGenerator::generate(const std::string &input, const std::string &output
mf << "NumTiles: " << m_numTilesX << " " << m_numTilesY << std::endl;
mf << "MinTile: " << minTileX << " " << minTileY << std::endl;
mf << "TileSize: " << (m_tileW*16) << " " << (m_tileH*16) << std::endl;
mf << "Zoom: " << m_zoom << std::endl;
mf.close();
}
else