Show or Hide the View Navigation Menu
You can hide or show the View Navigation menu in Vuforia View by modifying the CSS on underlying elements. For example:
// the "show" param is boolean: true to show the nav bar, false to hide it
$scope.showHeader = function(show) {
document.querySelector(".nav-bar-container").style.display = show?"block":"none";
document.querySelector(".has-header").style.top = show?"44px":"0px";