EquirectangularMultiTilesPanorama: {
    basePanoData?: PanoData | PanoDataProvider;
    baseUrl?: string;
    levels: EquirectangularTileLevel[];
    tileUrl: ((col, row, level) => string | null);
}

Configuration of a tiled panorama with multiple tiles configurations

Type declaration

  • Optional basePanoData?: PanoData | PanoDataProvider

    panoData configuration associated to low resolution panorama loaded before tiles

  • Optional baseUrl?: string

    low resolution panorama loaded before tiles

  • levels: EquirectangularTileLevel[]

    Configuration of tiles by zoom level

  • tileUrl: ((col, row, level) => string | null)
      • (col, row, level): string | null
      • function to build a tile url

        Parameters

        • col: number
        • row: number
        • level: number

        Returns string | null

Generated using TypeDoc