<div class='type'>Interface</div>


<a id='references'></a>

<div class='sourceset sourceset-common'>Common</div>



```kotlin
interface GlobalPositionAwareModifierNode : DelegatableNode
```


A `androidx.compose.ui.Modifier.Node` whose `onGloballyPositioned` is called with the final
LayoutCoordinates of the Layout when the global position of the content may have changed. Note
that it will be called after a composition when the coordinates are finalized.

This is the `androidx.compose.ui.Modifier.Node` equivalent of
`androidx.compose.ui.layout.OnGloballyPositionedModifier`


## Functions



<h2 id="ongloballypositioned-coordinates">onGloballyPositioned</h2>

```kotlin
fun onGloballyPositioned(coordinates: LayoutCoordinates)
```


Called with the final LayoutCoordinates of the Layout after measuring. Note that it will be
called after a composition when the coordinates are finalized. The position in the modifier
chain makes no difference in either the `LayoutCoordinates` argument or when the
`onGloballyPositioned` is called.