@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) • 318 B
TypeScript
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;
}