I was wondering if anyone knows how or if you can actually remove a layer of points after adding them using this convention:
var pointsLayer, someFeatures = [{
Use map.removeLayer():
map.removeLayer()
var circle = L.circle([lat, lng], 1000).addTo(map); map.removeLayer(circle);