This code varies the transparency of markers on a matplotlib base map via the alpha parameter.
myBaseMap.plot(x_values, y_values, 'x', alpha=0.7, c=(1.,0,0))
However, how does one vary the brightness of a marker? I do not want semi-transparent markers because I want the markers to cover the content behind them. Thank you!
My reading of your question is that you would like to know how to get different transparency for line and markers.
One way to do this is to plot the markers using
scatter:Lower
zordernumbers are drawn first.Simple example: