> 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.

#### Inherited from

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`position$`](/docs/browser-sdk/v4/reference/participant#position-1)

## position

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

Current layout position.

#### Inherited from

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`position`](/docs/browser-sdk/v4/reference/participant#position)

## **Examples**

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