Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm making a website that features listings using the Google Maps API. I've read over a few solutions (https://developers.google.com/maps/articles/toomanymarkers) but nothing is really doing what I want.

I have thousands of markers, and when my website displays a "state" that users choose, the thousand/s of markers clutter up the page or make load time really bad--it is just unusable at the moment.

I know of MapClusterer, but I have something else in mind. I'd like my website to say, "There are too many listings in your area, please zoom in further to view listings" --Basically, the map doesn't load the listings until the user zooms in to the X zoom setting. THEN the map only loads listings that are within the user's map frame of view. So instead of loading thousands of listings onto a map, it only loads what the user is currently looking at.

What I want sortof works like (this -- http://www.johnlscott.com/SearchInteractive.aspx?Lat=47.2404705882353&Lon=-122.479032132589&Zoom=12). Where if you are zoomed out too far it tells you "zoom in more, then you'll see listings". It is doing this because there are too many listings and it will be all cluttered/too slow if they showed them all-- I need this too! Any advice on where I can go or how I can get this done?

Thanks!

share|improve this question
You need to move your data to a database that supports spatial queries. Set up event listeners (pan, zoom, etc) to send the bounds to your server, do a query for the total number of points within the bounds, and then either send the data down (to show markers) or display the too many markers message. – andresf Jun 6 '12 at 23:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.