This is the frontend served at https://map.project-osrm.org. This frontend builds heavily on top of Leaflet Routing Machine. If you need a simple OSRM integration in your webpage, you should start from there.
The easiest and quickest way to setup your own routing engine backend is to use Docker images we provide. We base our Docker images on Alpine Linux and make sure they are as lightweight as possible.
Serves the frontend at http://localhost:9966 running queries against the routing engine backend:
docker run -p 9966:9966 ghcr.io/project-osrm/osrm-frontend:latest
By default Docker uses a single routing profile named default and sends requests to http://localhost:5000.
OSRM_MODES is the current Docker runtime configuration interface. It accepts a JSON array of objects with name and url fields.
docker run -p 9966:9966 \
-e 'OSRM_MODES=[{"name":"car","url":"https://routing.openstreetmap.de/routed-car"},{"name":"foot","url":"https://routing.openstreetmap.de/routed-foot"},{"name":"bike","url":"https://routing.openstreetmap.de/routed-bike"}]' \
ghcr.io/project-osrm/osrm-frontend:latestOSRM_BACKEND is deprecated. It is still supported for backward compatibility and configures exactly one backend named default.
docker run -p 9966:9966 \
-e OSRM_BACKEND='http://localhost:5001' \
ghcr.io/project-osrm/osrm-frontend:latest- If only
OSRM_BACKENDis set, the frontend configures one backend and emits a deprecation warning. - If only
OSRM_MODESis set, the frontend parses the JSON and configures the listed modes. - If both are set,
OSRM_MODESwins and the frontend emits a deprecation warning forOSRM_BACKEND.
In case Docker complains about not being able to connect to the Docker daemon make sure you are in the docker group.
sudo usermod -aG docker $USER
To build the docker image locally:
docker build -f docker/Dockerfile -t osrm-frontend .
docker run -p 9966:9966 osrm-frontendInstall dependencies via
npm installThen compile assets and start the local server with
npm startOn Windows with no Unix tools installed (bash and cp) the server could be started with two other commands
executed by npm start internally:
npm run compile
npm run start-indexFor Docker deployments, prefer runtime configuration via OSRM_MODES instead of editing source files.
For source-level customization, adjust src/leaflet_options.js:
services: [{
label: 'Car (fastest)',
path: 'http://localhost:5000/route/v1'
}],
For debug tiles showing speeds and small components available at /debug adjust in debug/index.html
"osrm": {
"type": "vector",
"tiles" : ["http://localhost:5000/tile/v1/car/tile({x},{y},{z}).mvt"]
}