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

# position$

> Observable of the participant's layout position.

```ts
get position$(): Observable<LayoutLayer | undefined>
```

Observable of the participant's layout position.

## position

```ts
get position(): LayoutLayer | undefined
```

Current layout position.

## **Examples**

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