我写了一个数据科学代码,并得到了一些要在Google地图上绘制的坐标。这些是坐标,所有这些坐标都在称为首都贝尔格莱德的首都塞尔维亚。
X Y
20.657460 44.490140
20.510760 44.652443
20.510540 44.884460
20.471758 44.788613
20.359841 44.742405
20.472120 44.763520
20.610525 44.676290
如何在Google地图上绘制这些数据,以便可以在Google地图上看到这些坐标的位置?
我尝试使用matplotlib,一些Santdex教程以及pygmaps
,但都失败了。我无法安装pygmaps
答案 0 :(得分:1)
您可以使用gmplot用Google Maps绘制数据。
为此,请安装pip install gmplot
。
然后,代码应类似于:
from gmplot import gmplot
# Initialize the map at a given point
gmap = gmplot.GoogleMapPlotter(37.766956, -122.438481, 13)
# Add a marker
gmap.marker(37.770776, -122.461689, 'cornflowerblue')
# Draw map into HTML file
gmap.draw("my_map.html")
您可以看到gmplot repo来了解如何使用它。