osrm-backend/include/engine/api/flatbuffers/waypoint.fbs

14 lines
457 B
Plaintext
Raw Normal View History

2019-08-02 07:30:09 -04:00
include "position.fbs";
namespace osrm.engine.api.fbresult;
table Waypoint {
longitute: double;
latitude: 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
}