org.openstreetmap.gui.jmapviewer.interfaces
Interface TileLoader

All Known Implementing Classes:
OsmFileCacheTileLoader, OsmTileLoader

public interface TileLoader

Interface for implementing a tile loader. Tiles are usually loaded via HTTP or from a file.


Method Summary
 TileJob createTileLoaderJob(Tile tile)
          A typical implementation of this function should create and return a new TileJob instance that performs the load action.
 

Method Detail

createTileLoaderJob

TileJob createTileLoaderJob(Tile tile)
A typical implementation of this function should create and return a new TileJob instance that performs the load action.

Parameters:
tile - the tile to be loaded
Returns:
TileJob implementation that performs the desired load action.


JOSM