UNPKG

@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

10 lines (9 loc) 354 B
import { RoutePlannerInputData } from "../route-planner-input-data"; import { AgentPlanData } from "../nested/response/properties-response-data"; export interface RoutePlannerResultData { agents: AgentPlanData[]; inputData: RoutePlannerInputData; unassignedAgents: number[]; unassignedJobs: number[]; unassignedShipments: number[]; }