VOOZH about

URL: https://www.geeksforgeeks.org/python/python-plotting-google-map-using-folium-package/

⇱ Python | Plotting Google Map using folium package - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | Plotting Google Map using folium package

Last Updated : 11 Jul, 2025

Folium is built on the data wrangling strengths of the Python ecosystem and the mapping strengths of the Leaflet.js (JavaScript) library. Simply, manipulate your data in Python, then visualize it on a leaflet map via Folium. Folium makes it easy to visualize data that's been manipulated in Python, on an interactive Leaflet map. This library has a number of built-in tilesets from OpenStreetMap, Mapbox etc.
Command to install folium module : 

pip install folium


Code #1 : To create a Base Map. 

Output :

👁 Image



Code #2 : Add a circular marker with popup text. 

Output :

👁 Code2-1024x539-copy




Code #3 : Add a simple_marker for parachute style marker with pop-up text. 

Output :

👁 Image



Code #4 : Add a line to the map 

Output :

👁 Image


Comment
Article Tags: