MVFv3 API Documentation
    Preparing search index...

    Type Alias EnterpriseTextAreasByFloor

    EnterpriseTextAreasByFloor: {
        [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";
        };
    }

    Type declaration

    • [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";
      }