Uses of Class
org.openstreetmap.gui.jmapviewer.Tile

Packages that use Tile
org.openstreetmap.gui.jmapviewer This package and all sub-packages are belonging to the Java component JMapViewer 
org.openstreetmap.gui.jmapviewer.interfaces   
org.openstreetmap.josm.gui.layer   
 

Uses of Tile in org.openstreetmap.gui.jmapviewer
 

Fields in org.openstreetmap.gui.jmapviewer declared as Tile
(package private)  Tile MemoryTileCache.CacheEntry.tile
           
(package private)  Tile OsmFileCacheTileLoader.FileLoadJob.tile
           
 

Methods in org.openstreetmap.gui.jmapviewer that return Tile
 Tile MemoryTileCache.CacheEntry.getTile()
           
 Tile OsmFileCacheTileLoader.FileLoadJob.getTile()
           
 Tile TileController.getTile(int tilex, int tiley, int zoom)
          retrieves a tile from the cache.
 Tile MemoryTileCache.getTile(TileSource source, int x, int y, int z)
           
 

Methods in org.openstreetmap.gui.jmapviewer with parameters of type Tile
 void MemoryTileCache.addTile(Tile tile)
           
protected  MemoryTileCache.CacheEntry MemoryTileCache.createCacheEntry(Tile tile)
           
 TileJob OsmTileLoader.createTileLoaderJob(Tile tile)
           
 TileJob OsmFileCacheTileLoader.createTileLoaderJob(Tile tile)
           
protected  java.net.URLConnection OsmTileLoader.loadTileFromOsm(Tile tile)
           
protected  void OsmTileLoader.loadTileMetadata(Tile tile, java.net.URLConnection urlConn)
           
 void JMapViewer.tileLoadingFinished(Tile tile, boolean success)
           
 

Constructors in org.openstreetmap.gui.jmapviewer with parameters of type Tile
MemoryTileCache.CacheEntry(Tile tile)
           
OsmFileCacheTileLoader.FileLoadJob(Tile tile)
           
 

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

Methods in org.openstreetmap.gui.jmapviewer.interfaces that return Tile
 Tile TileJob.getTile()
          Function to return the tile associated with the job
 Tile TileCache.getTile(TileSource source, int x, int y, int z)
          Retrieves a tile from the cache if present, otherwise null will be returned.
 

Methods in org.openstreetmap.gui.jmapviewer.interfaces with parameters of type Tile
 void TileCache.addTile(Tile tile)
          Adds a tile to the cache.
 TileJob TileLoader.createTileLoaderJob(Tile tile)
          A typical implementation of this function should create and return a new TileJob instance that performs the load action.
 void TileLoaderListener.tileLoadingFinished(Tile tile, boolean success)
          Will be called if a new Tile has been loaded successfully.
 

Uses of Tile in org.openstreetmap.josm.gui.layer
 

Fields in org.openstreetmap.josm.gui.layer declared as Tile
private  Tile TMSLayer.clickedTile
           
(package private)  Tile TMSLayer.showMetadataTile
           
 

Fields in org.openstreetmap.josm.gui.layer with type parameters of type Tile
(package private)  java.util.HashSet<Tile> TMSLayer.tileRequestsOutstanding
           
 

Methods in org.openstreetmap.josm.gui.layer that return Tile
(package private)  Tile TMSLayer.getOrCreateTile(int x, int y, int zoom)
           
(package private)  Tile TMSLayer.getTile(int x, int y, int zoom)
           
(package private)  Tile TMSLayer.getTileForPixelpos(int px, int py)
          This isn't very efficient, but it is only used when the user right-clicks on the map.
(package private)  Tile TMSLayer.tempCornerTile(Tile t)
           
 

Methods in org.openstreetmap.josm.gui.layer that return types with arguments of type Tile
private  java.util.List<Tile> TMSLayer.TileSet.__allTiles(boolean create)
           
(package private)  java.util.List<Tile> TMSLayer.TileSet.allExistingTiles()
           
private  java.util.List<Tile> TMSLayer.TileSet.allLoadedTiles()
           
(package private)  java.util.List<Tile> TMSLayer.TileSet.allTilesCreate()
           
(package private)  java.util.List<Tile> TMSLayer.paintTileImages(java.awt.Graphics g, TMSLayer.TileSet ts, int zoom, Tile border)
           
 

Methods in org.openstreetmap.josm.gui.layer with parameters of type Tile
(package private)  java.awt.Image TMSLayer.getLoadedTileImage(Tile tile)
          Returns the image for the given tile if both tile and image are loaded.
(package private)  boolean TMSLayer.loadTile(Tile tile, boolean force)
           
(package private)  java.util.List<Tile> TMSLayer.paintTileImages(java.awt.Graphics g, TMSLayer.TileSet ts, int zoom, Tile border)
           
(package private)  void TMSLayer.paintTileText(TMSLayer.TileSet ts, Tile tile, java.awt.Graphics g, MapView mv, int zoom, Tile t)
           
private  java.awt.Point TMSLayer.pixelPos(Tile t)
           
(package private)  Tile TMSLayer.tempCornerTile(Tile t)
           
(package private)  LatLon TMSLayer.tileLatLon(Tile t)
           
 void TMSLayer.tileLoadingFinished(Tile tile, boolean success)
           
(package private)  java.awt.Rectangle TMSLayer.tileToRect(Tile t1)
           
 



JOSM