-
Notifications
You must be signed in to change notification settings - Fork 44
Use Leaflet and OSM with density map and clustering #37
Comments
Thanks for the proposal :) +1 for leaflet +1 for OSM tiles, we just need a provider able to handle a decent amount of traffic for free (or in exchange of some sort of acknowledgment on the site like we do with Heroku). I don't know what's the traffic like at the moment though. +1 for the clustering plugin, coupled with an ajax view that returns geoJSON given a client's bounding box it'd work great. As for density maps: I was thinking about something a bit more advanced than per-country grouping. E.g. implement the marching squares[0] algorithm to determine the boundaries for a given number of density levels, then simply draw those boundaries as leaflet polygons, with a Each polygon could have a solid border and a given opacity, for high density zones they'd stack and the overall opacity would increase as the density increases. What do you think of this approach? Polygons should obviously be computed on a daily (or so) basis and cached somewhere. We have redis or postgres for that. The main limitation is that the current Heroku database plan doesn't support PostGIS. We could ask @jacobian if we can upgrade it but it's something like 5x more expensive. Naive bounding box queries would work at the moment without postgis though so it's probably not blocking anything. Ping me on IRC if you need some anonymized data! |
I suggest an iterative work, something like:
What do you think? |
Totally agreed, let's not break all the things at once. |
It has been broken in the initial commit.
Note that you must have DEBUG=True AND your IP in the INTERNAL_IPS to use the non compressed version.
Goals: - serve them in HTTPS - minify them with our solutions
…kers This is just a Proof-of-Concept with the leaflet-markercluster plugin.
Basicaly: - divide the world in a grids, sized according to zoom level - for each point, calculate the closest grid node - take a "random" point of the cluster to set the center But well, we have a POC working, let's refine it now :)
As we discussed, I'm starting a branch to work on:
About the density map: do we want to group per country? Something like this: http://leaflet.cloudmade.com/examples/choropleth.html ?
About the clustering, maybe using the @danzel plugin could do the job: http://danzel.github.com/Leaflet.markercluster/example/marker-clustering-realworld.388.html
The text was updated successfully, but these errors were encountered: