Hi guys,
I can help you in this case, have a look towards the following code in which I am first plotting lat, long and track and then on OSM using mplleaflet library.
plt.figure(figsize=(8,6))
fig = plt.figure()
plt.plot(plot_coords['lon'].values, plot_coords['lat'].values)
plt.plot(plot_coords['lon'].values, plot_coords['lat'].values, 'ro')
after this:
# if you are using notebook
mplleaflet.display(fig=fig)
# for pycharm or command line
mplleaflet.show(fig=fig)
Thanks,
Qazi