@versatiles/style
    Preparing search index...

    Type Alias TextOptions

    TextOptions: LabelStyle & {
        addresses?: LabelStyle;
        boundaries?: LabelStyle & { countries?: LabelStyle; states?: LabelStyle };
        language?: string;
        languageStrict?: boolean;
        pitchAlignment?: PitchAlignment;
        places?: LabelStyle & {
            cities?: LabelStyle;
            districts?: LabelStyle;
            hamlets?: LabelStyle;
            villages?: LabelStyle;
        };
        pois?: LabelStyle & { general?: LabelStyle; transit?: LabelStyle };
        streets?: LabelStyle & {
            exits?: LabelStyle;
            names?: LabelStyle;
            refs?: LabelStyle;
        };
        water?: LabelStyle & { lakes?: LabelStyle; rivers?: LabelStyle };
    }

    text: the label language, and a tree of label topics whose every node — the root, a group, a topic — takes the same LabelStyle properties. language, languageStrict and pitchAlignment apply to every label and are set on the root only.

    Type Declaration