Question
Make widget appear once tracking acquired
I'm trying to make widgets appear once initial tracking is acquired.
I tried using the below code but it doesn't seem to work.
$scope.$on('tracking', function()
{
$scope.view.wdg['label-2']['visible'] = true;
})
What service do I need to use to make it work?

