Add markers to avl.Geo plot?

Is it possible, within python, to add markers (e.g., station locations) to a avl.Geo plot ?

Yes. This is possible.

You can currently use something like:

plot = avl.Geo(product, 'your_variable')
m = plot.getMap()
m.add(Marker(location=(52.0, 4.35)))
plot

The getMap() is currently undocumented and the method name might change in the future, but a function to provide a reference to the underlying plot is something we want to keep providing.

It works perfectly, after importing ipyleaflet as follows

from ipyleaflet import Map, Marker

thanks!