Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.38 KB

LocateEdgeInfo.md

File metadata and controls

33 lines (24 loc) · 1.38 KB

LocateEdgeInfo

Properties

Name Type Description Notes
mean_elevation float The mean elevation, in meters, relative to sea level. [optional]
shape str An encoded polyline (https://developers.google.com/maps/documentation/utilities/polylinealgorithm). Note that the polyline is always encoded with 6 digits of precision, whereas most implementations default to 5.
names List[str] A list of names that the edge goes by. [optional]
bike_network BikeNetwork [optional]
way_id int The OSM way ID associated with this edge.

Example

from stadiamaps.models.locate_edge_info import LocateEdgeInfo

# TODO update the JSON string below
json = "{}"
# create an instance of LocateEdgeInfo from a JSON string
locate_edge_info_instance = LocateEdgeInfo.from_json(json)
# print the JSON string representation of the object
print(LocateEdgeInfo.to_json())

# convert the object into a dict
locate_edge_info_dict = locate_edge_info_instance.to_dict()
# create an instance of LocateEdgeInfo from a dict
locate_edge_info_from_dict = LocateEdgeInfo.from_dict(locate_edge_info_dict)

[Back to Model list] [Back to API list] [Back to README]