MVFv3 API Documentation
    Preparing search index...

    A collection of tileset styles.

    type TilesetCollection = {
        others?: { key: string; name: string; url: string }[];
        default: { key: string; name: string; url: string };
    }
    Index

    Properties

    Properties

    others?: { key: string; name: string; url: string }[]

    Additional tileset styles that can be used.

    Type declaration

    • key: string

      Unique identifier for the tileset style.

    • name: string

      Display name of the tileset style.

    • url: string

      URL of the tileset style. This should be a JSON file matching the MapLibre style specification.

    default: { key: string; name: string; url: string }

    The default tileset style, which should be used.

    Type declaration

    • key: string

      Unique identifier for the tileset style.

    • name: string

      Display name of the tileset style.

    • url: string

      URL of the tileset style. This should be a JSON file matching the MapLibre style specification.