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

11 lines (10 loc) 318 B
import { AvoidType } from "../../../types"; import { AvoidData } from "../../../interfaces"; export declare class Avoid { private raw; constructor(raw?: AvoidData); getRaw(): AvoidData; setRaw(value: AvoidData): this; setType(type: AvoidType): this; addValue(lon: number, lat: number): this; }