| org.geotools.renderer.Renderer
Renderer | public interface Renderer (Code) | | Base interface for renderer. This is very much work in progress.
Note: this interface will changes in future versions.
version: $Id: Renderer.java 20874 2006-08-07 10:00:01Z jgarnett $ author: James Macgill |
isInteractive | boolean isInteractive()(Code) | | Getter for property interactive.
Value of property interactive. |
pixelToWorld | public Coordinate pixelToWorld(int x, int y, Envelope map)(Code) | | |
render | void render(FeatureCollection fc, Envelope viewport, Style style)(Code) | | Renders the provided features using the specified style.
The features should fill the viewport but may well extend beyond it.
Features should be cropped (if appropriate) to the specified viewport.
Parameters: fc - The feature collection to render Parameters: viewport - The visible extent to be rendered Parameters: style - The style definition to apply to each feature |
setInteractive | void setInteractive(boolean interactive)(Code) | | Setter for property interactive.
Parameters: interactive - New value of property interactive. |
|
|