Javatpoint Logo
Javatpoint Logo

How to Plot the Google Map using folium package in Python

The folium package is built on the data wrangling strengths of the Python ecosystem and the mapping strengths of the Leaflet.js library of JavaScript language. The user can manipulate their data by using Python and then visualize it by using Leaflet.js map through folium package. Folium package is an easy approach of visualizing the data on Leaflet.js map, which has been manipulated by using Python.

Required Module and Libraries

Folium: The user can install the Folium package by using the following command.

Geopy: The geopy module of Python makes it easy for Python users to locate the coordinates of landmarks, cities, countries on the earth's surface. For installing the geopy module, the user can use the following command:

After successful installation of the both libraries, we follow the below steps to plot Google map.

Step 1: Create the Base map

The user can create the base map by using the following program:

Output:

How to Plot the Google Map using folium package in Python

Step 2: Add a Circular Marker

The user can mark the area with the circle and popup text by using the following code:

Output:

How to Plot the Google Map using folium package in Python

Step 3: Add the simple marker for the parachute style marker with the popup text

The user can use the following code.

Example -

Output:

How to Plot the Google Map using folium package in Python

Step 4: Add the line on the map

The user can use the following code for adding the line on the map to join the two coordinates.

Example -

Output:

How to Plot the Google Map using folium package in Python

Explanation

We used the geopy library to get the latitude and longitude of the location. Then we used the "folium.map" method of the folium package for creating the base of Google Maps.

In step 2, we used "folium.CircleMarker" for marking the circular mark on the location with the pop-up text. In step 3, we used "folium.Marker" to add a parachute style mark on the mentioned location. In the last step, we used "folium.PolyLine" for joining two marks on two different locations on the map.

Conclusion

In this tutorial, we have shown how the user can Plot the Google map and add different required functionalities on the map like a circular mark, parachute mark, pop-up text, and the line joining the two coordinates on the map.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA