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) 355 B
import { RoutePlannerInputData } from "../route-planner-input-data"; import { AgentSolutionData } from "../nested/result/agent-solution-data"; export interface RoutePlannerResultData { agents: AgentSolutionData[]; inputData: RoutePlannerInputData; unassignedAgents: number[]; unassignedJobs: number[]; unassignedShipments: number[]; }