![]() Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1. - [Release notes](https://github.com/terser/terser/releases) - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/commits) --- updated-dependencies: - dependency-name: terser dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
docker/www | ||
osrm | ||
public | ||
src | ||
.drone.yml | ||
.env.example | ||
.gitignore | ||
.prettierrc | ||
craco.config.js | ||
custom.d.ts | ||
docker-compose.yml | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json | ||
tsconfig.paths.json | ||
yarn.lock |
Bicycle routes map editor
Bicycle routes app with automatic routes, map screenshots, stickers and other features.
See it in action: Demo
Prerequisites
node, ts-node, osrm-server
Installing
First, download and install the project
git clone https://github.com/muerwre/orchidMap.git
cd orchidMap
npm i
Setting up OSRM
Install OSRM server as written here: https://github.com/Project-OSRM/osrm-backend
Specify country and region in osrm/prepare_maps.sh or download .pbf file from https://download.geofabrik.de/ manually. After starting ./prepare_maps you'll get parsed .osrm files for Open Source Routing Machine server.
Next you need to edit start_server.sh to specify address, port for server and path to parsed files.
After that run start_server.sh in screen or by the way you feel comfortable.
Next edit ./config/frontend.js
and specify OSRM url there. By default, OSRM starts at https://localhost:5001/
Common setup
Look at /config/
folder, there's backend and frontend .example.js files, just rename them to .js only.
Client
Configs are placed in ./config/frontend.js
For development launch npm start
and visit http://localhost:8000/
For production launch npm build
, the output will be placed at ./dist
folder, you should configure your http server to serve index html from that folder.