Skip to content

Commit f851c8d

Browse files
committed
Adjust doc
1 parent 5fbe38a commit f851c8d

File tree

2 files changed

+41
-6
lines changed

2 files changed

+41
-6
lines changed

docs/around_me/android/releases/2.17.0/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ title: AroundMe Android 2.17.0 - Changelog - Navitia SDK Docs
77
<h2>🗓 11 Sep 2025</h2>
88

99
#### Features
10-
- Minimal walking duration display can now be configured
1110
- Default zoom level can now be configured
1211
- Added new zoom level for stop points
1312
- Empty states can now be configured

docs/getting_started.md

Lines changed: 41 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,13 @@ The following are the possible configuration parameters:
101101
| `secondary` | :material-check: | To set the color of some UI components | `String` | `#8faa96` |
102102
-->
103103

104+
#### Appearance color
105+
106+
| Name | Required | Description | Type | Example |
107+
| --- |:---:| --- | :---: | :---: |
108+
| `dark` | :material-check: | To set the color for dark mode | `String` | `#88819f` |
109+
| `light` | :material-check: | To set the color for light mode | `String` | `#8faa96` |
110+
104111
#### Around Me color
105112

106113
| Name | Required | Description | Type | Example |
@@ -185,10 +192,10 @@ The following are the possible configuration parameters:
185192

186193
#### Traffic color
187194

188-
| Name | Required | Description | Type | Example |
195+
| Name | Required | Description | Type |
189196
| --- |:---:| --- | :---: | :---: |
190-
| `primary` | :material-check: | To set the main color of the screens | `String` | `#88819f` |
191-
| `secondary` | :material-check: | To set the color of some UI components | `String` | `#8faa96` |
197+
| `primary` | :material-check: | To set the main color of the screens | [`Appearance color`](#appearance-color) |
198+
| `secondary` | :material-check: | To set the color of some UI components | [`Appearance color`](#appearance-color) |
192199

193200
#### Disruption color
194201

@@ -327,6 +334,7 @@ The following are the possible configuration parameters:
327334
| `journey_mode` | :material-close: | Enable/disable the journey search mode | `Boolean` |
328335
| `max_history` | :material-close: | Define the max history items | `Int` |
329336
| `min_zoom_level` | :material-close: | Define the min zoom level of map. Android only | `Int` |
337+
| `default_zoom_level` | :material-close: | Define the default zoom level of map. | `('BUS' or 'FREE_FLOATING' or 'POI' or 'TRANSPORTS')` |
330338
| `next_departures` | :material-close: | Show/hide the next departures | [`Next departures`](#next-departures) |
331339
| `park_availability`| :material-close: | Show/hide the bss and car parking availability | [`Park Availability`](#park-availability) |
332340
| `schedule_mode` | :material-close: | Enable/disable redirection to schedule autocompletion screen | `Boolean` |
@@ -358,6 +366,7 @@ The following are the possible configuration parameters:
358366
| --- |:---:| --- | :---: | :---: |
359367
| `display` | :material-check: | Display/hide favorite tab | `Boolean` | `true` |
360368
| `title_res` | :material-close: | Title resource name | `String` | `"tab_title"` |
369+
| `empty_state_text_res` | :material-close: | Title resource name | `String` | `"stations_empty_state_text"` |
361370

362371
##### Default location
363372

@@ -419,13 +428,14 @@ The following are the possible configuration parameters:
419428
| `max_favorite_addresses` | :material-close: | Define the max favorite addresses alongside with home and work addresses | `Int` | `10` |
420429
| `max_favorite_pois` | :material-close: | Define the max favorite POIs | `Int` | `10` |
421430
| `max_history` | :material-close: | Define the max history items | `Int` | `10` |
431+
| `min_walking_duration_display` | :material-close: | Define the minimum walking duration to be displayed | [`Min walking duration display`](#min-walking-duration-display-journey) | - |
422432
| `next_departures` | :material-close: | Show/hide the next departures | [`Next departures (Journey)`](#next-departures-journey) | - |
423433
| `park_availability`| :material-close: | Show/hide the bss and car parking availability | [`Park Availability`](#park-availability) |
424434
| `price` | :material-close: | Show/hide the itinerary price | `Boolean` | `true` |
425435
| `realtime_delays` | :material-close: | Show/hide the itinerary realtime delays | `Boolean` | `true` |
426436
| `ridesharing_price` | :material-close: | Show/hide the itinerary ridesharing price | `Boolean` | `true` |
427437
| `search_only` | :material-close: | Enable/disable a direct search without input from user | `Boolean` | `false` |
428-
| `step_by_step_guidance` | :material-close: | Enable/disable the step by step guidance | `Boolean` |
438+
| `step_by_step_guidance` | :material-close: | Guidance screen feature configuration | [`Step by step guidance`](#step-by-step-guidance-journey) |
429439
| `stop_point_search_mode` | :material-close: | Enable/disable search by stop point instead of stop area | `Boolean` | `false` |
430440
| `traffic` | :material-close: | Define Traffic module options | [`Traffic options`](#traffic-options-journey) | - |
431441
| `transport_networks` | :material-close: | Show/hide the public transport network | `Boolean` | `false` |
@@ -445,6 +455,12 @@ The following are the possible configuration parameters:
445455
| `home` | :material-close: | Display/hide favorite items on home screen | `Boolean` | `true` |
446456
| `autocompletion` | :material-close: | Display/hide favorite items on autocompletion screen | `Boolean` | `true` |
447457

458+
##### Min walking duration display (Journey)
459+
460+
| Name | Required | Description | Type | Example |
461+
| --- |:---:| --- | :---: | :---: |
462+
| `journey_summary`| :material-check: | Define the min walking duration to be displayed in journey summary view in secondes | `Int` | `180` |
463+
448464
##### Next departures (Journey)
449465

450466
| Name | Required | Description | Type | Example |
@@ -453,11 +469,25 @@ The following are the possible configuration parameters:
453469
| `journeys`| :material-check: | Show/hide the next departures in the journeys screen | [`Next departures`](#next-departures) | - |
454470
| `roadmap`| :material-check: | Show/hide the next departures in the roadmap screen | [`Next departures`](#next-departures) | - |
455471

472+
##### Step by step guidance (Journey)
473+
474+
| Name | Required | Description | Type | Example |
475+
| --- |:---:| --- | :---: | :---: |
476+
| `enabled` | :material-check: | Enable step by step guidance screen | `Boolean` | `false` |
477+
| `launch_button_label_res` | :material-check: | The guidance screen launch string resource | `String` | `go_guidance_button_text` |
478+
456479
##### Traffic options (Journey)
457480

458481
| Name | Required | Description | Type | Example |
459482
| --- |:---:| --- | :---: | :---: |
460-
| `alert_subscription` | :material-close: | Enable Traffic alert subscriptions | `Boolean` | `false` |
483+
| `alert_subscription` | :material-close: | Enable Traffic alert subscriptions | `Boolean` | [`Traffic alert subscription`](#traffic-alert-subscription-journey) |
484+
485+
##### Traffic alert subscription (Journey)
486+
487+
| Name | Required | Description | Type | Example |
488+
| --- |:---:| --- | :---: | :---: |
489+
| `enabled` | :material-check: | Enable Traffic alert subscriptions | `Boolean` | `false` |
490+
| `excluded_physical_modes` | :material-close: | List of excluded physical modes | `[String]` | `[physical_mode:Bus]` |
461491

462492
#### Schedule features
463493

@@ -624,6 +654,12 @@ The following are the possible configuration parameters:
624654
| `arrival` | :material-close: | Arrival icon resource id | `String` | `ic_departure` |
625655
| `indoor_parking` | :material-close: | Indoor parking icon resource id | `String` | `ic_indoor_parking` |
626656
| `outdoor_parking` | :material-close: | Outdoor parking icon resource id | `String` | `ic_outdoor_parking` |
657+
| `parking_relay` | :material-close: | Parking relay icon resource id | `String` | `ic_parking_relay` |
658+
| `transports_tab` | :material-close: | Transports tab icon resource id | `String` | `ic_transports_tab` |
659+
| `walking_tab` | :material-close: | Walking tab icon resource id | `String` | `ic_walking_tab` |
660+
| `bike_tab` | :material-close: | Bike tab icon resource id | `String` | `ic_bike_tab` |
661+
| `car_tab` | :material-close: | Car tab icon resource id | `String` | `ic_car_tab` |
662+
| `ridesharing_tab` | :material-close: | Ridesharing tab icon resource id | `String` | `ic_ridesharing_tab` |
627663

628664
### Title resource
629665

0 commit comments

Comments
 (0)