Flash-y Map-plication vs. 500 marker limit
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWOnm2DWI93YKs7GoD_dpqGO6iFeWv5u15fVSKmRtn_BrH1cWxeyg0rIZ9YcRGK5m2KQUn6BAbvLsMUjCC-o7KFptHUpRq4F5FB6kRGrvWIOxNDem2oqAbSBe5gASsJ2v5jWJRMQ/s320/mich.png)
I've been pushing capabilities of javascript mapping frameworks. There's a real limit on the number of markers a browser can display without getting bogged down. 500 is a good limit, and that's probably too high for internet explorer. You can put as many markers as you like via WMS tiles. You can even take map clicks, send them back as AJAX queries and open an info window. I recently helped my friend do this, and we have a pretty snappy map displaying 5,000+ clickable "markers" no problem. It's actually not markers, just tiles, but it works quite well: That's a snapshot of the google maps application, with an info window that appears when a marker is clicked. It sends a GetFeatureInfo request back to a mapserver WMS. Vector drawing in the browser is limited. The amazing efforts of the OpenLayers , featureserver projects make this difficult to assert, as they abstract away all of the browser incompatibilities and give a nice platform to do real vector edit...