Commit c356313c authored by Eric Duminil's avatar Eric Duminil
Browse files

Less negative space

parent 8d3aef30
...@@ -247,9 +247,9 @@ var regionChooser = (function(){ ...@@ -247,9 +247,9 @@ var regionChooser = (function(){
var time = end - start; var time = end - start;
console.log('Download Execution time: ' + (time / 1000).toFixed(3) + 's'); console.log('Download Execution time: ' + (time / 1000).toFixed(3) + 's');
setTimeout(function() { setTimeout(function() {
resetDrawing();
document.getElementById("download_region_button").disabled = false; document.getElementById("download_region_button").disabled = false;
document.documentElement.className = ''; // Stop waiting document.documentElement.className = ''; // Stop waiting
resetDrawing();
}, 100); }, 100);
} else { } else {
var msg = "ERROR : Unknown coordinate system : \"" + srsName + "\". Cannot extract any region"; var msg = "ERROR : Unknown coordinate system : \"" + srsName + "\". Cannot extract any region";
...@@ -283,8 +283,7 @@ var regionChooser = (function(){ ...@@ -283,8 +283,7 @@ var regionChooser = (function(){
'<button type="button" onclick="regionChooser.downloadFromSelectedCityGMLs()" id="download_region_button" disabled>Download Region</button><br/>\n' + '<button type="button" onclick="regionChooser.downloadFromSelectedCityGMLs()" id="download_region_button" disabled>Download Region</button><br/>\n' +
'<a href="#" onclick="regionChooser.checkCityGMLS(true);">(Select All)</a>\n' + '<a href="#" onclick="regionChooser.checkCityGMLS(true);">(Select All)</a>\n' +
'<a href="#" onclick="regionChooser.checkCityGMLS(false);">(Select None)</a>\n'+ '<a href="#" onclick="regionChooser.checkCityGMLS(false);">(Select None)</a>\n'+
'</div><br/>\n'); '</div>\n');
dataPanel.append('<br/>\n');
findIntersections(); findIntersections();
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment