Since the markers are too many and data is very large. I want to only draw the screen bounded region of markers. while I pan to other region, I can dynamically issue new request only for those not-shown markers. In case of overlapping region, the original-shown markers should not be re-drawn. For some reason,I need to use python as the back-end server script.A typical ajax approach should be used I think.
One problem is A new request may cover the original region of markers. A small move may cause the whole region to be re-drawn. Is there any cache-like thing to remember the previous region data so that the same portion of data won't be sent. Is there any way to do this? Any idea would be appreciated!