Checks if a specific location mode was enabled.
Example - Check Locatoin Enabled
function OnStart()
{
var locEnabled = app.IsLocationEnabled();
app.Alert( locEnabled, "Location Enabled:" );
}
from native import app
def OnStart():
locEnabled = app.IsLocationEnabled()
app.Alert(locEnabled, "Location Enabled:")