wayAsLabelTagFilter method

bool wayAsLabelTagFilter(
  1. List<Tag> tags
)

Returns true if a way should be included in the result set for readLabels() By default only ways with names, house numbers or a ref are included in the result set of readLabels(). This is to reduce the set of ways as much as possible to save memory. @param tags the tags associated with the way @return true if the way should be included in the result set

Implementation

bool wayAsLabelTagFilter(List<Tag> tags) {
  return false;
}