Using the Google Maps API to display heat map level

I am doing an Android project where I have provided a list of geography points (lat, lng), and each point has an associated height (height) value.

My task is to create a heat map of this map with different colors depending on the height of the point.

Does anyone know of any existing library in order to do the same. Or, it would be very useful for me if anyone can give pointers to how it will be implemented. My only limitation is that it should work on Android.

Thanks in advance.

+6
source share
2 answers

mapex , for example. Or this post .

+5
source

The question is old, but recently Google launched the new Google Maps Android API Utility, which allows you to create light-paid cards. Check out BlogPost and Google Maps V2 .

Alternatively, the source code can be found on GitHub with some sample code available.

+3
source

Source: https://habr.com/ru/post/911837/


All Articles