• Adds a url to the info stack.

    Using the infoUrl, infoAudio, infoText, and infoVideo events, media and text can be shown on the Info tab. Multiple entries can be active simultaneously and are arranged in a vertical stack in order of addition.

    Below, another instance of www.deepzoom.com has been added to the info stack, inception style.

    Parameters

    • json: {
          height: string;
          removeExisting: boolean;
          src: string;
          type: string;
      } = ...
      • height: string

        the height specifying pixels or as a %

      • removeExisting: boolean

        if true, remove all existing content from the info stack

      • src: string

        a link to the web page to display. Must be served using https:

      • type: string

        "url"

    Returns void

    Example

    {
    type: "url",
    src: "https://www.deepzoom.com", // embed another copy of DeepZoom
    height: "400px",
    removeExisting: true,
    }
    • The following script events were used to create this stack.