BootInfo: {
    show: ((GeoLeaf: any, options??: any) => void);
    detectPlugins: ((GeoLeaf: any) => any);
    buildMessage: ((GeoLeaf: any) => {
        title: string;
        message: string;
    });
} = ...

API public exposede sur GeoLeaf.bootInfo

Type declaration

  • show: ((GeoLeaf: any, options??: any) => void)
      • (GeoLeaf, options?): void
      • Displays le toast de startup. Respects the debug.showBootInfo config (default: true in dev, false in prod).

        Parameters

        • GeoLeaf: any

          Le namespace global GeoLeaf

        • Optionaloptions: any = {}

        Returns void

  • detectPlugins: ((GeoLeaf: any) => any)
      • (GeoLeaf): any
      • Detects les plugins loadeds en interrogeant window.GeoLeaf.

        Parameters

        • GeoLeaf: any

          Le namespace global GeoLeaf

        Returns any

        List des noms de plugins actives

  • buildMessage: ((GeoLeaf: any) => {
        title: string;
        message: string;
    })
      • (GeoLeaf): {
            title: string;
            message: string;
        }
      • Builds the message du toast de startup.

        Parameters

        • GeoLeaf: any

        Returns {
            title: string;
            message: string;
        }

        • title: string
        • message: string