MVFv3 API Documentation
    Preparing search index...

    Enterprise Text Areas are a way to describe a place that text can be rendered dynamically on the map. They are grouped by floor.

    This is only for use by the SDK.

    type EnterpriseTextAreasSchema = {
        textAreas?: {
            [key: `f_${string}`]: {
                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";
                }[];
                type: "FeatureCollection";
            };
        };
    }
    Index

    Properties

    Properties

    textAreas?: {
        [key: `f_${string}`]: {
            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";
            }[];
            type: "FeatureCollection";
        };
    }