DEV Community

Cover image for Generating maps using Python + Folium
Vihanga Anuththara
Vihanga Anuththara

Posted on

Generating maps using Python + Folium

I recently built a python script that allows me to mark and display all institutes of Advanced Technology Institute (ATI) in Sri Lanka.


Why I built it

As an undergraduate HNDIT student, I wanted to practice my python skills by creating an interactive map that showcases the locations of institutes across Sri Lanka. After researching existing libraries and tools, I decided to use Folium due to its ease of use and extensive documentation.

Requirements

  • python 3.x
  • folium library ( install using pip install folium )

Features

  • Interactive map with institute locations
  • Easy navigation and zooming capabilities

What I learned

  • Folium library is an efficient way to create interactive maps with python.
  • Easy Marker Placement: Folium makes it easy to add markers to your map with various parameters, such as location, title, and color.
  • Customizable Map Layout: You can customize the layout of your map using various options available within Folium.
  • Zooming and Panning: Interactive maps are perfect for navigating and zooming in on specific locations. Folium provides a simple way to do this.
  • Layered Maps: You can add multiple layers to your map, such as markers, polygons, and images, making it easy to visualize complex data.

GitHub

Check out my GitHub repository here?
https://github.com/vanu888/ATI_Map.git

Top comments (0)