GMap.NET icon indicating copy to clipboard operation
GMap.NET copied to clipboard

Is there any way to add a animated custom marker?

Open SaiBalaji202 opened this issue 6 years ago • 0 comments

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);

SaiBalaji202 avatar May 23 '19 12:05 SaiBalaji202