Changed min tiling level from 16 to 12

pull/1/head
Piero Toffanin 2017-03-06 17:46:17 -05:00
rodzic 3a3e6bc53d
commit 970efa2d6d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -307,7 +307,7 @@ module.exports = class Task{
const generateTiles = (inputFile, outputDir) => {
return (done) => {
this.runningProcesses.push(processRunner.runTiler({
zoomLevels: "16-21",
zoomLevels: "12-21",
inputFile: path.join(this.getProjectFolderPath(), inputFile),
outputDir: path.join(this.getProjectFolderPath(), outputDir)
}, handleProcessExit(done), handleOutput));