[indexer] Add comms tower, cross and emergency=* to IsPoiChecker

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin 2025-02-03 09:43:15 +07:00
parent d688c855a1
commit 9a02f4e3fd

View file

@ -443,8 +443,8 @@ OneLevelPOIChecker::OneLevelPOIChecker() : ftypes::BaseChecker(1 /* level */)
{
Classificator const & c = classif();
for (auto const * path : {"amenity", "craft", "healthcare", "historic", "leisure", "office", "railway",
"shop", "sport", "tourism", "mountain_pass"})
for (auto const * path : {"amenity", "craft", "emergency", "healthcare", "historic", "leisure",
"mountain_pass", "office", "railway", "shop", "sport", "tourism"})
m_types.push_back(c.GetTypeByPath({path}));
}
@ -466,6 +466,8 @@ TwoLevelPOIChecker::TwoLevelPOIChecker() : ftypes::BaseChecker(2 /* level */)
{"highway", "rest_area"},
{"highway", "services"},
{"highway", "speed_camera"},
{"man_made", "communications_tower"},
{"man_made", "cross"},
{"man_made", "lighthouse"},
{"man_made", "water_tap"},
{"man_made", "water_well"},