UNPKG

@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.

11 lines (10 loc) 297 B
import { RouteLegStepData } from "../../../interfaces"; export declare class RouteLegStep { private readonly raw; constructor(raw?: RouteLegStepData); getRaw(): RouteLegStepData; getDistance(): number; getTime(): number; getFromIndex(): number; getToIndex(): number; }