-- @/lua/ge/extensions/freeroam/bigMapPoiProvider.lua:77
-- Function to get all active group IDs
M.getActiveGroupIds = function()
local activeGroups = {}
for groupKey, isVisible in pairs(groupVisibilityState) do
if isVisible then
table.insert(activeGroups, groupKey)
end
end
return activeGroups
end