matchWay method
Checks the wayProperties and adds itself to the layerContainer if there is something to draw.
Implementation
@override
void matchWay(LayerContainer layerContainer, WayProperties wayProperties) {
if (bitmapSrc == null && isStrokeTransparent()) return;
if (wayProperties.getCoordinatesAbsolute().isEmpty) return;
layerContainer.add(level, RenderInfoWay<RenderinstructionPolyline>(wayProperties, this));
}