Question

I'm working a project which uses PHP to retrieve data from a MySOL database and is supposed to be parsed and displayed real-time as a heat-map in WP7.

Some queries return 5000+ POIs with data (latitude, longitude, values etc....). I've searched and tried implementing some examples I found but ran into some memory usage problems because of the amount of data being visualized.

My question is: What is the best way to display that quantity of data, as heat maps, efficiently on a WP7?

Was it helpful?

Solution

IMO, the best way is converting your POIs into tile images (either completely offline, or by writing a server-side code that queries your MySQL and builds the PNGs), and then overlay your tiles atop of the map. BTW, PHP is not the best tool for such tasks.

See this article: Adding Tile Overlays to the Map

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top