- Install project requirements using
pip install -r requirements.txt
- Virtual Environment
- Install virtualenv -
pip install virtualenv
- Create environment -
virtualenv venv
- activation:
- Windows:
venv\Scripts\activate
- Linux:
source venv/bin/activate
- Windows:
- Install requirements using
pip install -r requirements.txt
- Install virtualenv -
- Run map.py file using
python map.py
- Right click on map to select different options available
- Left click to add charging points
- Click on Calculate Path to identify route and give starting warehouse location in popup window.
- Clear locations will clear all the added locations
- Change tile server for different map views
- Search for address in the top search bar
- tkintermapview (https://github.com/TomSchimansky/TkinterMapView)
- geopy (https://github.com/geopy/geopy)
- numpy (https://github.com/numpy/numpy)
- python_tsp (https://github.com/fillipe-gsm/python-tsp)