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

# Location Request

> Requests the user's location via an interactive button

The **Location Request** node sends a message with a button that allows the user to share their current location directly from their device.

## Configuration

* **Message**: Text that explains to the user why you need their location
* **Save response as**: Name of the variable where the coordinates will be stored

## Response format

The location is saved as a JSON object:

```json theme={null}
{
  "latitude": -0.1806532,
  "longitude": -78.4678382
}
```

You can access the individual coordinates in subsequent nodes:

* Latitude: `{{$memory.location.latitude}}`
* Longitude: `{{$memory.location.longitude}}`

<Note>
  This node **requests** the user's location (waits for a response). If you need to **send** a location to the user, use the [Location](/guides/nodos/ubicacion) node.
</Note>
