This is a simple example that deals with interactive map directions between two geolocated points, using data retrieved from Open Street Map and Networkx graphs!
You must first download and install Miniconda.
Then execute these commands to create and configure your environment:
conda create -n directions-example
conda activate directions-example
conda config --env --add channels conda-forge
conda config --env --set channel_priority strict
conda install python=3.7 osmnx ipyleaflet networkx jupyter
jupyter notebook
- OSMNX- Used to get Open Street Map data
- Networkx- Used to handle the graph
- Ipyleaflet- Used to plot the map
