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.

8 lines (7 loc) 269 B
import { GeometryResponseData } from "./geometry-response-data"; import { PropertiesResponseData } from "./properties-response-data"; export interface FeatureResponseData { geometry: GeometryResponseData; type: string; properties: PropertiesResponseData; }