From Clomosy Docs
Boolean Property Clomosy.LocationIsActive;
In the project, it returns True if location information is enabled; otherwise, it returns False.
To enable the location setting, you can review the GetCurrentLocation page.
Example
{
if (Clomosy.LocationIsActive)
ShowMessage('Location enabled!');
else
ShowMessage('Location disabled!');
}