I am creating a Circle using the google.maps.Circle() method. This all works fine and dandy, but how can I remove said circle?
My code:
var populationOpt
You need to call the setMap method on the Circle object to null:
cityCircle.setMap(null);