public void clearMaps() throws IOException { map.clear(); thread.scheduleComputeMap(); }
public void addMapLocation(File location) throws IOException { if (location.isDirectory()) map.addDirectory(location); else map.addFile(location); thread.scheduleComputeMap(); }