this.tiley = tiley;
this.zoom = zoom;
}
public synchronized void run() {
TileCache cache = listener.getTileCache();
synchronized (cache) {
tile = cache.getTile(source, tilex, tiley, zoom);
if (tile == null || tile.isLoaded() || tile.loading)
return;
tile.loading = true;
}
tileCacheDir = new File(cacheDirBase, source.getName());