Dot-notation paths
Reach into nested objects with dots and into arrays with numeric indices:| Payload | Path | Resolves to |
|---|---|---|
{ "gps": { "lat": 18.9 } } | gps.lat | 18.9 |
{ "location": [23.1, 79.9] } | location.0 | 23.1 |
{ "telemetry": { "position": { "lat": 28.6 } } } | telemetry.position.lat | 28.6 |
Core fields
The Map view needs a device ID and coordinates; everything else is optional.Unique identifier — e.g.
deviceId, id, node, machine_id.e.g.
gps.lat / gps.lng, or location.0 / location.1.Rotates the marker — e.g.
heading, telemetry.yaw.Shown in the marker popup.
Drives marker/row color (green / amber / red).
Extra display fields
Any payload key can surface in the marker popup and detail panel — add an extra field with a label and a path (Passengers → meta.passengers, Battery → telemetry.battery).
Same widget, four payloads
Back to Fleet overview
The six views and the data contract.

