Is there any difference between Circle and CircleMaker on leaflet? On example the only difference looks like one might have a children, though, on docs, both allow children. So whats the difference?
<Circle center={center} pathOptions={fillBlueOptions} radius={200} />
<CircleMarker center={[51.51, -0.12]} pathOptions={redOptions} radius={20}>
<Popup>Popup in CircleMarker</Popup>
</CircleMarker>
Thank you.