Dear all,
in my app, which uses library GoogleMaps (2.00), I would like to use my
custom marker, which is animated. Using custom marker can be done via command:
...
gMap = MainMapFragment.GetMap
bmp.Initialize(File.DirAssets, "custom_marker.png")
Dim m3 As Marker = gMap.AddMarker3(48.207740, 16.366051, "Hofburg Palace", bmp)
...
..., but I want to make the marker alive, e.g. the marker will breathe (will grow and shrink). You can imagine it as an animated GIF.
Please, is it possible to have animated marker in Google map?
Thank you.