I\'ve a Windows Forms Application with a Gmap.Net controller, what I want to do is to add markers based on an outside sources that provides
It's because you're adding the marker to the overlay that has not been added to the map's overlays. Try to switch the order of the statements as follows:
gmap.Overlays.Add(markersOverlay); markersOverlay.Markers.Add(marker);