Uses of Interface
org.openstreetmap.gui.jmapviewer.interfaces.TileSource

Packages that use TileSource
org.openstreetmap.gui.jmapviewer   
org.openstreetmap.gui.jmapviewer.interfaces   
 

Uses of TileSource in org.openstreetmap.gui.jmapviewer
 

Classes in org.openstreetmap.gui.jmapviewer that implement TileSource
 class JTileDownloaderTileSourceWrapper
           
protected static class OsmTileSource.AbstractOsmTileSource
           
static class OsmTileSource.CycleMap
           
static class OsmTileSource.Mapnik
           
static class OsmTileSource.TilesAtHome
           
 

Fields in org.openstreetmap.gui.jmapviewer declared as TileSource
protected  TileSource Tile.source
           
(package private)  TileSource OsmFileCacheTileLoader.FileLoadJob.source
           
(package private)  TileSource JTileDownloaderTileLoader.FileLoadJob.source
           
protected  TileSource JMapViewer.tileSource
           
 

Methods in org.openstreetmap.gui.jmapviewer that return TileSource
 TileSource Tile.getSource()
           
 TileSource JMapViewer.getTileLayerSource()
           
 TileSource JMapViewer.getTileSource()
           
 

Methods in org.openstreetmap.gui.jmapviewer with parameters of type TileSource
 java.lang.Runnable OsmTileLoader.createTileLoaderJob(TileSource source, int tilex, int tiley, int zoom)
           
 java.lang.Runnable OsmFileCacheTileLoader.createTileLoaderJob(TileSource source, int tilex, int tiley, int zoom)
           
 java.lang.Runnable JTileDownloaderTileLoader.createTileLoaderJob(TileSource source, int tilex, int tiley, int zoom)
           
 Tile MemoryTileCache.getTile(TileSource source, int x, int y, int z)
           
static java.lang.String Tile.getTileKey(TileSource source, int xtile, int ytile, int zoom)
           
 void JMapViewer.setTileSource(TileSource tileSource)
           
 

Constructors in org.openstreetmap.gui.jmapviewer with parameters of type TileSource
JTileDownloaderTileLoader.FileLoadJob(TileSource source, int tilex, int tiley, int zoom)
           
OsmFileCacheTileLoader.FileLoadJob(TileSource source, int tilex, int tiley, int zoom)
           
Tile(TileSource source, int xtile, int ytile, int zoom)
          Creates a tile with empty image.
Tile(TileSource source, int xtile, int ytile, int zoom, java.awt.image.BufferedImage image)
           
 

Uses of TileSource in org.openstreetmap.gui.jmapviewer.interfaces
 

Methods in org.openstreetmap.gui.jmapviewer.interfaces with parameters of type TileSource
 java.lang.Runnable TileLoader.createTileLoaderJob(TileSource tileLayerSource, int tilex, int tiley, int zoom)
          A typical TileLoader.createTileLoaderJob(org.openstreetmap.gui.jmapviewer.interfaces.TileSource, int, int, int) implementation should create and return a new Runnable instance that performs the load action.
 Tile TileCache.getTile(TileSource source, int x, int y, int z)
          Retrieves a tile from the cache if present, otherwise null will be returned.