I am building a web application with Angular and (Angular) Leaflet which includes a map with several hundreds markers in one area. Right now, all of our markers are simple L.circleMarkers. However as we need to reload these markers quite often and therefore have a bad performance, I thought about using geoJson. I did a bit research but could not find a real comparison of the simple markers and those geoJson markers.
So now I would like to know, if geoJson markers would be an applicable option or do they not really perform better than simple markers in large groups and frequent reloading. (If someone knows a even better way please feel free telling me so).
Thanks in advance!