From 55b28b8c87a6001a8868cc31d2eee22210a51198 Mon Sep 17 00:00:00 2001 From: Miguel Matey Sanz Date: Tue, 30 Aug 2022 10:54:58 +0200 Subject: [PATCH] docs: update readme --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 89d6c1f..e881c50 100644 --- a/README.md +++ b/README.md @@ -365,11 +365,16 @@ export const defaultConfig = { #### [`LocationSensorSample`](src/internal/sensors/location/sample.ts) -| Property | Type | Description | -|-------------|-----------|---------------------------------| -| `latitude` | `number` | Latitude coordinate component. | -| `longitude` | `number` | Longitude coordinate component. | -| `altitude` | `number` | Altitude coordinate component. | +| Property | Type | Description | +|----------------------|----------|--------------------------------------------------------------| +| `latitude` | `number` | Latitude coordinate component. | +| `longitude` | `number` | Longitude coordinate component. | +| `altitude` | `number` | Altitude coordinate component. | +| `verticalAccuracy` | `number` | Estimated error in the latitude. | +| `horizontalAccuracy` | `number` | Estimated error in the longitude. | +| `speed` | `number` | Estimated device's speed when the location was acquired. | +| `direction` | `number` | Estimated device's direction when the location was acquired. | + ### [`PlainMessageClient`](src/internal/communication/plain-message/android/plain-message-client.android.ts)