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