matchClosedWay method

List<RenderInstruction> matchClosedWay(
  1. Tile tile,
  2. Way way
)

Matches a closed way with the given parameters against this RenderTheme.

@param renderCallback the callback implementation which will be executed on each match. @param renderContext @param way

Implementation

List<RenderInstruction> matchClosedWay(final Tile tile, Way way) {
  return _matchWay(tile, Closed.YES, way);
}