TomTom Maps for JavaScript
    Preparing search index...

    Type Alias LocalizedName

    Localized name for a POI category.

    Provides the category name in a specific language/locale.

    const localizedName: LocalizedName = {
    nameLocale: 'en-US',
    name: 'Restaurant'
    };
    type LocalizedName = {
        name: string;
        nameLocale: string;
    }
    Index

    Properties

    Properties

    name: string

    Category name in the specified locale.

    Human-readable, localized category text.

    nameLocale: string

    Language/locale code for this name.

    Uses IETF language tags (e.g., 'en-US', 'fr-FR', 'de-DE').