I have drawn circle using

    circle = new google.maps.Circle({
    map: map,
    radius: r,    // 1 miles in metres = 1609.3 m
        strokeWeight:1,
        strokeOpacity:0.5,
        fillOpacity:0.2,
        fillColor: '#AA0000'
    });
    circle.bindTo('center', marker, 'position');

How to remove circle from the map ?

link|improve this question

60% accept rate
feedback

1 Answer

up vote 1 down vote accepted
circle.setMap(null);

will remove the circle

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.