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.

10 lines (9 loc) 284 B
import { CoordinatesData } from "../../../interfaces"; export declare class Coordinates { private raw; constructor(raw?: CoordinatesData); getRaw(): CoordinatesData; setRaw(value: CoordinatesData): this; setLat(lat: number): this; setLon(lon: number): this; }