@map.ir/services-sdk
Version:
JavaScript/TypeScript SDK for map.ir services
14 lines (13 loc) • 425 B
TypeScript
/**
*
* @author Aydin Ghane
* @author Mohammad Hassan Sattarian
*/
import type { RouteStep } from "osrm";
type Locale = "fa" | "en";
export default function routeText(steps: RouteStep[], locale?: Locale): {
instructionText: string;
durationText: string;
}[];
export declare function humanReadableInterval(interval: number, type: "minutes" | "seconds" | "meters", locale?: Locale): string;
export {};