Package org.oscim.theme.styles
Interface RenderStyle.Callback
- All Known Implementing Classes:
VectorTileLoader
- Enclosing class:
- RenderStyle<T extends RenderStyle<T>>
public static interface RenderStyle.Callback
Callback methods for rendering areas, ways and points of interest (POIs).
-
Method Summary
Modifier and TypeMethodDescriptionvoidrenderArea(AreaStyle area, int level) Renders an area with the given parameters.voidrenderCircle(CircleStyle circle, int level) Renders a point of interest circle with the given parameters.voidrenderExtrusion(ExtrusionStyle extrusion, int level) Renders an extrusion with the given parameters.voidrenderSymbol(SymbolStyle symbol) Renders a point of interest symbol with the given bitmap.voidrenderText(TextStyle text) Renders a way with the given text along the way path.voidRenders a way with the given parameters.
-
Method Details
-
renderArea
Renders an area with the given parameters. -
renderExtrusion
Renders an extrusion with the given parameters. -
renderCircle
Renders a point of interest circle with the given parameters.- Parameters:
circle- the circle.level- the drawing level on which the circle should be rendered.
-
renderSymbol
Renders a point of interest symbol with the given bitmap.- Parameters:
symbol- the symbol to be rendered.
-
renderWay
Renders a way with the given parameters. -
renderText
Renders a way with the given text along the way path.
-