@geoapify/route-planner-sdk
Version:
A TypeScript SDK for the Geoapify Route Planner API that simplifies route optimization requests, and helps visualize and edit resulting routes.
12 lines (11 loc) • 425 B
TypeScript
import { RouteActionInfoData } from "../../../interfaces/nested/result/route-action-info-data";
import { RouteAction } from "./route-action";
import { AgentSolution } from "./agent-solution";
export declare class RouteActionInfo {
private readonly raw;
constructor(raw?: RouteActionInfoData);
getRaw(): RouteActionInfoData;
getAgentId(): string;
getAction(): RouteAction;
getAgent(): AgentSolution;
}