In my mapping project, I use different markers for various scenarios. A regular marker represents an individual item, a customized marker represents a region containing multiple items, and a circle marker is used when there are too many items in one region to display neatly.
Originally, I utilized an infobox for the label of the custom marker. However, the labels became unreadable when markers overlapped. With some assistance, I switched to a markerwithlabel which successfully resolved the issue.
For the label of the circle marker, I currently employ the infobox. However, I prefer to use only one type of label. Therefore, I am interested to know if it's possible to utilize markerwithlabel for a google.maps.circle instead of the infobox?
circleOpts: {
strokeColor: '#FF0000',
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: '#FF0000',
center: someCenterPosition,
radius: someRegionRadius
};
var circle = new google.maps.Circle(circleOpts);
circle.position = circleOpts.center;