> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# layoutLayers$

> Observable of layout layer positions for all participants.

```ts
get layoutLayers$(): Observable<LayoutLayer[]>
```

Observable of layout layer positions for all participants.

## layoutLayers

```ts
get layoutLayers(): LayoutLayer[]
```

Current snapshot of layout layers.

## **Examples**

```ts
call.layoutLayers$.subscribe((layoutLayers) => {
  console.log('layoutLayers:', layoutLayers);
});
```