14 lines
452 B
Plaintext
14 lines
452 B
Plaintext
include "position.fbs";
|
|
namespace osrm.engine.api.fbresult;
|
|
|
|
table Waypoint {
|
|
hint: string;
|
|
distance: double;
|
|
name: string;
|
|
location: Position;
|
|
nodes: [double]; //Used only by 'Nearest' service
|
|
matchings_index: uint; //Used only by 'Match' service
|
|
waypoint_index: uint; //Used by 'Match' and 'Trip' services
|
|
alternatives_count: uint; //Used only by 'Match' service
|
|
trips_index: uint; //Used only by 'Trip' service
|
|
} |