@geoapify/route-planner-sdk
Version:
TypeScript SDK for the Geoapify Route Planner API. Supports route optimization, delivery planning, and timeline visualization in browser and Node.js
13 lines (12 loc) • 388 B
TypeScript
import { ActionResponseData } from "./action-response-data";
export interface WaypointResponseData {
original_location: [number, number];
original_location_index?: number;
original_location_id?: number;
location: [number, number];
start_time: number;
duration: number;
actions: ActionResponseData[];
prev_leg_index?: number;
next_leg_index?: number;
}