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 Type
    Method
    Description
    void
    renderArea(AreaStyle area, int level)
    Renders an area with the given parameters.
    void
    renderCircle(CircleStyle circle, int level)
    Renders a point of interest circle with the given parameters.
    void
    renderExtrusion(ExtrusionStyle extrusion, int level)
    Renders an extrusion with the given parameters.
    void
    Renders a point of interest symbol with the given bitmap.
    void
    Renders a way with the given text along the way path.
    void
    renderWay(LineStyle line, int level)
    Renders a way with the given parameters.
  • Method Details

    • renderArea

      void renderArea(AreaStyle area, int level)
      Renders an area with the given parameters.
    • renderExtrusion

      void renderExtrusion(ExtrusionStyle extrusion, int level)
      Renders an extrusion with the given parameters.
    • renderCircle

      void renderCircle(CircleStyle circle, int level)
      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

      void renderSymbol(SymbolStyle symbol)
      Renders a point of interest symbol with the given bitmap.
      Parameters:
      symbol - the symbol to be rendered.
    • renderWay

      void renderWay(LineStyle line, int level)
      Renders a way with the given parameters.
    • renderText

      void renderText(TextStyle text)
      Renders a way with the given text along the way path.