3D-City Model
    Preparing search index...

    WindowFactory – Static factory class to create various types of informational and error windows for the application UI.

    Provides unified helpers for modal/information window creation, including measurement, area, and context-specific windows, using i18next translations for titles and content.

    createInformationGeWindow(config) - Instantiates an InformationGeWindow with the given configuration.

    createErrorGeWindow(config) - Instantiates an ErrorGeWindow with the given configuration.

    createBasicMeasurementWindow({id}) - Returns a standard basic measurement InformationGeWindow.

    createHeightMeasurementWindow() - Returns a height measurement InformationGeWindow.

    createAreaWindow() - Returns an area measurement InformationGeWindow.

    createLengthWindow() - Returns a length measurement InformationGeWindow.

    createViewshedWindow() - Returns a viewshed InformationGeWindow.

    // Show a basic measurement window:
    const win = WindowFactory.createBasicMeasurementWindow({ id: "bmw-001" });
    // win is an InformationGeWindow with translated title/content.

    // For areas:
    const areaWin = WindowFactory.createAreaWindow();
    Index

    Constructors

    Methods