我有一个包含3列的Excel工作表:“名称”,“经度”和“纬度”
我使用gmplot绘制了位置(经度+纬度),但是我无法列出每个相应位置的“名称”标签。
任何指针将不胜感激。 到目前为止,这是我所做的:
import gmplot
import pandas as pd
import matplotlib.pyplot as plt
df = pd.read_excel(open('path', 'rb'), sheet_name='Results')
print(df.columns)
Station = df['Station']
latitude_list = df['LatDD']
longitude_list = df['LonDD']
gmap = gmplot.GoogleMapPlotter(36.072500,14.216483, 10, apikey='')
gmap.scatter(latitude_list, longitude_list, 'k' , marker=True)
gmap.draw('map.html')