IsBigmapActive
Docslocal retval = IsBigmapActive()Description
Returns true if the minimap is currently expanded. False if it's the normal minimap state.
Use <code>IsBigmapFull</code> to check if the full map is currently revealed on the minimap.
Returns
BOOLReturns TRUE (1) or FALSE (0).
Examples
Official
local expanded = IsBigmapActive()
local fullMap = IsBigmapFull()
print("The minimap is currently " .. (expanded and "expanded" or "normal size") .. " and the full map is currently " .. (fullMap and "revealed" or "not revealed") .. ".")