GMap.NET
GMap.NET copied to clipboard
Is there any way to add a animated custom marker?
How to add a animated gif as a marker type? The below code doesn't throw any error, but the gif image is not actually animating. How to solve this issue?
```
var overlay = new GMapOverlay("marker_overlay");
var bmp = (Bitmap)Image.FromFile("marker-1.gif");
var marker = new GMarkerGoogle(pos, bmp);
overlay.Markers.Add(marker);
gMapControl1.Overlays.Add(overlay);