MVFv3 API Documentation
    Preparing search index...

    Type Alias EnterpriseFloorTextFeatureCollection

    type EnterpriseFloorTextFeatureCollection = {
        type: "FeatureCollection";
        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";
        }[];
    }
    Index

    Properties

    Properties

    type: "FeatureCollection"
    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";
    }[]