Graphic dots / circles on google map using python

I am new to Python and I am trying to plot the points (longitude, latitude) on a google map in Python. I found lib gmplot for the same, but I can only draw drops, instead I want to draw circles / points on the map. Can someone show an example of how to do this? I did not find any example in StackOverflow.

thank

+4
source share
1 answer

Take a look at the github page for this package. In their example, they have the following:

gmap.plot(latitudes, longitudes, 'cornflowerblue', edge_width=10)

Replace the "latitude" and "longitude" with the arrays of the desired points.

, , "", , .

+3

Source: https://habr.com/ru/post/1659684/


All Articles