I\'m trying to load dynamically users avatars as custom markers. I based my code on the google maps utils demo, but somehow it doesn\'t work, it loads only one image and all
Regarding about @Stas Parshin answer, there might be some problems with Glide if you put the request within onBeforeClusterItemRendered().
I placed it on onClusterItemRendered() and it worked beautifully. It is because Glide is using asynchronous process and might not able to load it into ImageView in time.
Hope it helps.