MVFv3 API Documentation
    Preparing search index...

    Type Alias EnterpriseFloorTextSchema

    Enterprise Floor Text describes a way to describe text that should be rendered on a specific floor, at a certain height or on a specific geometry.

    It is only for use by the SDK.

    type EnterpriseFloorTextSchema = {
        floorText?: {
            [key: `f_${string}`]: {
                features: {
                    geometry: { coordinates: [number, number]; type: "Point" };
                    properties:
                        | {
                            align: "unknown"
                            | "left"
                            | "center"
                            | "right";
                            color: string;
                            fontFamily: string;
                            fontSize: number;
                            id: `eft_${string}`;
                            rotation: number;
                            text: string;
                            visible: boolean;
                        } & { geometryId: `g_${string}` }
                        | {
                            align: "unknown" | "left" | "center" | "right";
                            color: string;
                            fontFamily: string;
                            fontSize: number;
                            id: `eft_${string}`;
                            rotation: number;
                            text: string;
                            visible: boolean;
                        } & { verticalOffset: number };
                    type: "Feature";
                }[];
                type: "FeatureCollection";
            };
        };
    }
    Index

    Properties

    Properties

    floorText?: {
        [key: `f_${string}`]: {
            features: {
                geometry: { coordinates: [number, number]; type: "Point" };
                properties:
                    | {
                        align: "unknown"
                        | "left"
                        | "center"
                        | "right";
                        color: string;
                        fontFamily: string;
                        fontSize: number;
                        id: `eft_${string}`;
                        rotation: number;
                        text: string;
                        visible: boolean;
                    } & { geometryId: `g_${string}` }
                    | {
                        align: "unknown" | "left" | "center" | "right";
                        color: string;
                        fontFamily: string;
                        fontSize: number;
                        id: `eft_${string}`;
                        rotation: number;
                        text: string;
                        visible: boolean;
                    } & { verticalOffset: number };
                type: "Feature";
            }[];
            type: "FeatureCollection";
        };
    }