Exemplo n.º 1
0
bool IsBridgeChecker::IsMatched(uint32_t type) const
{
  return IsTypeConformed(type, {"highway", "*", "bridge"});
}
Exemplo n.º 2
0
bool IsTunnelChecker::IsMatched(uint32_t type) const
{
  return IsTypeConformed(type, {"highway", "*", "tunnel"});
}
Exemplo n.º 3
0
bool IsBuildingPartChecker::IsMatched(uint32_t type) const
{
  return IsTypeConformed(type, {"building:part"});
}