-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 4.0 - support for navigation aids
- Loading branch information
1 parent
17d149c
commit b1e00ef
Showing
181 changed files
with
5,948 additions
and
258 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.7.0 | ||
7.8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# AnnotationFilters | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**action** | **str** | | [optional] | ||
**attributes** | **List[str]** | A set of granular attributes to include between every pair of coordinates along the route. This can significantly increase the response size. | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from stadiamaps.models.annotation_filters import AnnotationFilters | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AnnotationFilters from a JSON string | ||
annotation_filters_instance = AnnotationFilters.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AnnotationFilters.to_json()) | ||
|
||
# convert the object into a dict | ||
annotation_filters_dict = annotation_filters_instance.to_dict() | ||
# create an instance of AnnotationFilters from a dict | ||
annotation_filters_from_dict = AnnotationFilters.from_dict(annotation_filters_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# ExtendedDirectionsOptions | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**format** | **str** | The output response format. The default JSON format is extremely compact and ideal for web or data-constrained use cases where you want to fetch additional attributes on demand in small chunks. The OSRM format is much richer and is configurable with significantly more info for turn-by-turn navigation use cases. | [optional] | ||
**banner_instructions** | **bool** | Optionally includes helpful banners with timing information for turn-by-turn navigation. This is only available in the OSRM format. | [optional] | ||
**voice_instructions** | **bool** | Optionally includes voice instructions with timing information for turn-by-turn navigation. This is only available in the OSRM format. | [optional] | ||
**filters** | [**AnnotationFilters**](AnnotationFilters.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from stadiamaps.models.extended_directions_options import ExtendedDirectionsOptions | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ExtendedDirectionsOptions from a JSON string | ||
extended_directions_options_instance = ExtendedDirectionsOptions.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ExtendedDirectionsOptions.to_json()) | ||
|
||
# convert the object into a dict | ||
extended_directions_options_dict = extended_directions_options_instance.to_dict() | ||
# create an instance of ExtendedDirectionsOptions from a dict | ||
extended_directions_options_from_dict = ExtendedDirectionsOptions.from_dict(extended_directions_options_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# OsrmAdmin | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**iso_3166_1** | **str** | The ISO 3166-1 two-character code for the admin region. | [optional] | ||
**iso_3166_1_alpha3** | **str** | The ISO 3166-1 three-character code for the admin region. | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from stadiamaps.models.osrm_admin import OsrmAdmin | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of OsrmAdmin from a JSON string | ||
osrm_admin_instance = OsrmAdmin.from_json(json) | ||
# print the JSON string representation of the object | ||
print(OsrmAdmin.to_json()) | ||
|
||
# convert the object into a dict | ||
osrm_admin_dict = osrm_admin_instance.to_dict() | ||
# create an instance of OsrmAdmin from a dict | ||
osrm_admin_from_dict = OsrmAdmin.from_dict(osrm_admin_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# OsrmAnnotation | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**distance** | **List[float]** | The distance, in meters, between each pair of coordinates. | [optional] | ||
**duration** | **List[float]** | The duration between each pair of coordinates, in seconds. | [optional] | ||
**weight** | **List[int]** | | [optional] | ||
**speed** | **List[float]** | The estimated speed of travel between each pair of coordinates in meters/sec. | [optional] | ||
**maxspeed** | [**List[OsrmSpeedLimit]**](OsrmSpeedLimit.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from stadiamaps.models.osrm_annotation import OsrmAnnotation | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of OsrmAnnotation from a JSON string | ||
osrm_annotation_instance = OsrmAnnotation.from_json(json) | ||
# print the JSON string representation of the object | ||
print(OsrmAnnotation.to_json()) | ||
|
||
# convert the object into a dict | ||
osrm_annotation_dict = osrm_annotation_instance.to_dict() | ||
# create an instance of OsrmAnnotation from a dict | ||
osrm_annotation_from_dict = OsrmAnnotation.from_dict(osrm_annotation_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# OsrmBannerComponent | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**text** | **str** | | [optional] | ||
**type** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from stadiamaps.models.osrm_banner_component import OsrmBannerComponent | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of OsrmBannerComponent from a JSON string | ||
osrm_banner_component_instance = OsrmBannerComponent.from_json(json) | ||
# print the JSON string representation of the object | ||
print(OsrmBannerComponent.to_json()) | ||
|
||
# convert the object into a dict | ||
osrm_banner_component_dict = osrm_banner_component_instance.to_dict() | ||
# create an instance of OsrmBannerComponent from a dict | ||
osrm_banner_component_from_dict = OsrmBannerComponent.from_dict(osrm_banner_component_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# OsrmBannerContent | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**text** | **str** | | | ||
**type** | **str** | | [optional] | ||
**modifier** | [**OsrmGuidanceModifier**](OsrmGuidanceModifier.md) | | [optional] | ||
**components** | [**List[OsrmBannerComponent]**](OsrmBannerComponent.md) | A list of objects with additional context that allow for visual layout improvements beyond what's possible with plain text. | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from stadiamaps.models.osrm_banner_content import OsrmBannerContent | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of OsrmBannerContent from a JSON string | ||
osrm_banner_content_instance = OsrmBannerContent.from_json(json) | ||
# print the JSON string representation of the object | ||
print(OsrmBannerContent.to_json()) | ||
|
||
# convert the object into a dict | ||
osrm_banner_content_dict = osrm_banner_content_instance.to_dict() | ||
# create an instance of OsrmBannerContent from a dict | ||
osrm_banner_content_from_dict = OsrmBannerContent.from_dict(osrm_banner_content_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# OsrmBannerInstruction | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**distance_along_geometry** | **float** | How far (in meters) from the upcoming maneuver the instruction should start being displayed. | | ||
**primary** | [**OsrmBannerContent**](OsrmBannerContent.md) | | | ||
**secondary** | [**OsrmBannerContent**](OsrmBannerContent.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from stadiamaps.models.osrm_banner_instruction import OsrmBannerInstruction | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of OsrmBannerInstruction from a JSON string | ||
osrm_banner_instruction_instance = OsrmBannerInstruction.from_json(json) | ||
# print the JSON string representation of the object | ||
print(OsrmBannerInstruction.to_json()) | ||
|
||
# convert the object into a dict | ||
osrm_banner_instruction_dict = osrm_banner_instruction_instance.to_dict() | ||
# create an instance of OsrmBannerInstruction from a dict | ||
osrm_banner_instruction_from_dict = OsrmBannerInstruction.from_dict(osrm_banner_instruction_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
Oops, something went wrong.