API Client for brouter
This rust crate contains a simple client for the API of brouter, a routing engine based on openstreetmap data.
Usage
use ;
let router = default;
let gpx = router.broute;
This rust crate contains a simple client for the API of brouter, a routing engine based on openstreetmap data.
use brouter_client::{Brouter, Point};
let router = Brouter::default();
let gpx = router.broute(&[Point::new(52.3676, 4.9041), Point::new(52.0907, 5.1214)], &[], "trekking", None, None);