Skip to main content

Option to enable/disable the loading animation bar in VertiGIS Studio Web

Comments

1 comment

  • Bryan Price

    For anyone that wants to just disable this progress bar please follow the steps below.
    Create a new workflow with an Inject CSS tool in it e.g.

    In the content of the Inject CSS enter the following CSS:
    /* Hide the progressbar on map loading */ 
    .MuiLinearProgress-root { 
       display: none !important;
       visibility: hidden !important;
       height: 0 !important;

    /* Hide the progressbar animation (blue line at top) on map loading */ 
    .MuiLinearProgress-bar { 
       display: none !important;
       visibility: hidden !important;
       height: 0 !important;
    }

    Save the workflow.

    In VertiGIS Web Studio click on Services, then App.  

    Under Events, Application Initializing, choose the workflow you just saved.

    Save the App.
    This should stop the progress bar appearing when the Web App loads.

    0

Please sign in to leave a comment.