---
title: "Navvis IVION Panorama Images Repository"
slug: "panorama-images-repository-1"
description: "Follow these steps to get panorama image metadata in NavVis IVION that is within a particular room and set to be hidden:"
updated: 2024-02-26T08:40:29Z
published: 2024-02-26T08:40:29Z
canonical: "knowledge.navvis.com/panorama-images-repository-1"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://knowledge.navvis.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Panorama Images Repository

Follow these steps to get panorama image metadata that is within a particular room and that is set to be hidden:

1. Run:

```plaintext
const room = await api.siteModel.repository.findOne(23); // arbitrary site model
```
2. Run:

```plaintext
const imgFilterBuilder: ImageFilterInterface = api.image.repository.createFilterBuilder();
      imgFilterBuilder.siteModel(room);
      imgFilterBuilder.hidden(true);

const imgFilter: RestFilterInterface = imgFilterBuilder.build();
```
3. Run:

```plaintext
api.image.repository.filter(imgFilter)
  .then((hiddenRoomImages: ImageInterface[]) => {
    // Perform actions on hidden panoramas located in a room
  });
```
