abstract class ImageTileLayer extends TileLayer<ImageTile> implements Renderable
A TileLayer that is made up of ImageTiles.
| Constructor and description | 
|---|
                                ImageTileLayer() | 
                        
| Type Params | Return Type | Name and description | 
|---|---|---|
 | 
                            java.util.List<org.geotools.map.Layer> | 
                            getMapLayers(Bounds bounds, java.util.List size) | 
                        
 | 
                            Raster | 
                            getRaster(TileCursor<ImageTile> cursor)Get a Raster using Tiles from the TileCursor.  | 
                        
 | 
                            Raster | 
                            getRaster(Bounds b, int w, int h)Get a Raster using Tiles for the Bounds and image size.  | 
                        
 | 
                            Raster | 
                            getRaster(Point p, long z, int w, int h)Get a Raster around a Point at a given zoom level  | 
                        
Get a Raster using Tiles from the TileCursor. If the TileCursor is empty a null Raster will be returned
cursor -  The TileCursorGet a Raster using Tiles for the Bounds and image size. The Raster is cropped to exactly the given Bounds.
b -  Boundsw -  The image widthh -  The image height