I want to style the markers to be circular and stroked.
The icons I use are pictures of users
for (var t = 0, llen = dub.length; t < llen; t++) {
marker[t] = new google.maps.Marker({
position: new google.maps.LatLng(dub[t]['lat'], dub[t]['long']),
map: map,
icon: dub[t]['m_avatar'], //member pic
title: dub[t]['title'], //member name
member_id: dub[t]['m_id'] //member ID
// animation: google.maps.Animation.DROP //add BOUNCE on hover
});
}
right now it shows the images, I wish to make them circular and give them a stroke .
This is how I want the markers to appear