Click here to Skip to main content
15,887,427 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I am drawing a circle on map. but the circle is not smooth. How i can do this. Please help.

Thanks

What I have tried:

var circle = new google.maps.Circle({
strokeColor: '#000000',
strokeOpacity: 0.8,
strokeWeight: 2,
strokeOpacity: 1,
fillColor: '#000000',
fillColor: 0.75,
map: map,
radius: 0.5,
});
Posted
Updated 29-Jun-16 1:08am

1 solution

Here is my Solution:
JavaScript
var circle = new google.maps.Circle({
   strokeColor: '#000000',
   strokeWeight: 1.5,
   strokeOpacity: 1,
   fillColor: 0.75,
 });
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900