kcdmap-electron = kingdomcomemap + electron
Thanks to RogerHN's kingdomcomemap.github.io you can use the Kindom Come map even when not in game, City names, Fast travel points etc. You can see many points such as on this map and add our own markers. But it has a small problem: you always need to have an internet connection or browser to use this map. Here's a desktop app that Kingdom Come players can use offline. Created using electron and kingdomcomemap source codes.
Screenshot of how the application looks on Windows operating system
Currently available for download on Windows and Linux, go to Download Latest Version
Source codes are presented openly for those who want to develop the project on their own. After downloading the source codes, follow these steps for installation.
# Cloning source code
git clone https://github.com/ahmetcanisik/kingdomcomemap-desktop.git
# Go to source directory
cd kingdomcomemap-desktop/source
# install with npm
npm install
# or pnpm
pnpm install
# or yarn
yarn install
After the installation is complete, launch the electron application with these codes:
# start with npm
npm run start
# or pnpm
pnpm start
# or yarn
yarn start
If you want to convert the project into a desktop application, these codes will work.
# build with npm
npm run build
# or pnpm
pnpm build
# or yarn
yarn build
If you want output targeting a specific operating system, run these lines:
# only building for windows
yarn build --win
# or linux
yarn build --linux