Skip to main content
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:
{
  "latitude": -0.1806532,
  "longitude": -78.4678382
}
You can access the individual coordinates in subsequent nodes:
  • Latitude: {{$memory.location.latitude}}
  • Longitude: {{$memory.location.longitude}}
This node requests the user’s location (waits for a response). If you need to send a location to the user, use the Location node.