MVFv3 API Documentation
    Preparing search index...

    A collection of Enterprise Text Area Features for a given floor.

    type EnterpriseTextAreaCollection = {
        type: "FeatureCollection";
        features: {
            geometry: { coordinates: [number, number]; type: "Point" };
            properties:
                | {
                    align: "unknown"
                    | "center"
                    | "near";
                    maxHeight: number;
                    maxWidth: number;
                    rotation: number;
                } & { geometryId: `g_${string}` }
                | {
                    align: "unknown" | "center" | "near";
                    maxHeight: number;
                    maxWidth: number;
                    rotation: number;
                } & { verticalOffset: number };
            type: "Feature";
        }[];
    }
    Index

    Properties

    Properties

    type: "FeatureCollection"
    features: {
        geometry: { coordinates: [number, number]; type: "Point" };
        properties:
            | {
                align: "unknown"
                | "center"
                | "near";
                maxHeight: number;
                maxWidth: number;
                rotation: number;
            } & { geometryId: `g_${string}` }
            | {
                align: "unknown" | "center" | "near";
                maxHeight: number;
                maxWidth: number;
                rotation: number;
            } & { verticalOffset: number };
        type: "Feature";
    }[]