@routingjs/ors
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

RoutingJS: ORS

Promise-based web client for OpenRouteService.

Example

import { ORS } from "@routingjs/ors"

const ors = new ORS({ apiKey: "my-api-key" }) // URL defaults to https://api.openrouteservice.org
ors.directions(
    [
        [8.512516, 47.380742],
        [8.557835, 47.359467],
    ],
    "driving-car"
).then((d) => {
    // do stuff with the directions response
    d.directions.forEach((direction) => {
        console.log(direction.feature)
    })
})

Installation

npm install @routingjs/ors

This package is part of the RoutingJS project, which aims to provide consistent access to various vehicle routing APIs.

Package Sidebar

Install

npm i @routingjs/ors

Weekly Downloads

3

Version

0.2.0

License

MIT

Unpacked Size

76.5 kB

Total Files

19

Last publish

Collaborators

  • routingjs