Skip to content Skip to sidebar Skip to footer

Google Maps V3 Rendering Over 1 Million Markers (in A Reasonable Time)

I have recently created a Google Map using V3 of the API (latest version). One of my requirements is that I am able to render over 1 million markers (in a reasonable time). A reas

Solution 1:

I had similar challenge of showing a million+ points on map.

Made use of elastic search clustering on server side and leaflet cluster on the client side.

May be this be helpful..

Demo here

Check the code here

Solution 2:

I have used Google Fusion Tables successfully and it is very fast and quite simple - once you work out how to use OAuth2....

The tables are limited to 100,000 entries each and you upload them from a CSV file - either by going to your Google Drive in a browser or programmatically using curl or Perl.

To get beyond the 100,000 element limit, you can add 5 layers to your map but that will still only get you to 500,000 points. Can't suggest anything more than that.

My project is here if you want a look.

Post a Comment for "Google Maps V3 Rendering Over 1 Million Markers (in A Reasonable Time)"