How Can I Implement Thematic Map In Native Android?
How can I implement thematic map in native android development for a particular value group like: population, children mortality rate or gender. Is there any library to acheive thi
Solution 1:
There are several ways to do that:
1) draw polygons of thematic map over google maps like in this question;
2) create KML file for custom thematic map and KMLLayer to google map liken in that answer;
3) use Ground Overlay to overlay google map by image of thematic map;
4) use TileOverlays and create custom tile provider for your thematic map, like in that question;
and so on...
Post a Comment for "How Can I Implement Thematic Map In Native Android?"