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) 285 B
import { LocationData } from "../../../interfaces"; export declare class Location { private raw; constructor(raw?: LocationData); getRaw(): LocationData; setRaw(value: LocationData): this; setId(id: string): this; setLocation(lon: number, lat: number): this; }