I create a marker to place on a Google map:
var compMarker = new google.maps.Marker({
position: {lat: 33, lng: -118}
map: map,
label: {
text: "10",
color: "white",
fontWeight: "bold"
},
icon: {
path: google.maps.SymbolPath.CIRCLE,
scale: 15,
fillColor: "#4E90D9",
fillOpacity: 1,
strokeWeight: 1
}
});
This is the result:
As you can see the circle is pretty choppy looking. Is there a way to create a high quality circle?