org.geotools.renderer
Interface Renderer2D
public interface Renderer2D
Renderer draws a map on behalf on MapPane
. It determines what features to draw,
bounding box, size, and style from the context.
- Version:
- $Id: Renderer2D.java 30649 2008-06-12 19:44:08Z acuster $
- Author:
- Cameron Shorter
Method Summary |
void |
paint(java.awt.Graphics2D graphics,
java.awt.Rectangle paintArea,
java.awt.geom.AffineTransform transform)
Render features based on the org.geotools.map.LayerList ,
bounding box and Style specified in
the context. |
paint
void paint(java.awt.Graphics2D graphics,
java.awt.Rectangle paintArea,
java.awt.geom.AffineTransform transform)
- Render features based on the
org.geotools.map.LayerList
,
bounding box and Style
specified in
the context.
- Parameters:
graphics
- The graphics handler to draw to.paintArea
- The bounds of the output area in output units (usually pixels).
The upper left corner is (0,0) in most cases. However, a different value
is allowed if some widget area must be preserved, for example a margin on
the left and top size for painting a graduation.transform
- A transform which converts "World coordinates" to output
coordinates.
This transform will be concatenated to the graphics
transform (as of
graphics.transform
(transform)
)
before the rendering take place.
Copyright © 1996-2010 Geotools. All Rights Reserved.