UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

13 lines (12 loc) 417 B
// SPDX-License-Identifier: Apache-2.0 import { initializeGeoGirafeCustomStyles, SplashScreen } from './main.tools'; import GeoGirafeApp from './tools/app/geogirafeapp.js'; // Display the splash-screen const splash = new SplashScreen(); splash.begin(); initializeGeoGirafeCustomStyles(); const girafeApp = new GeoGirafeApp(true); girafeApp.isReady().then(() => { // Remove the splash-screen splash.end(); });