Source code for Android MapView v2?

I need to hack com.google.android.gms.maps.MapView , but I can not find the source. I already tried google search.

The reason I need to look at the source, I want to know when to do this rendering. The MapView class extends FrameLayout, but the map itself is drawn using OpenGl, so I really need to see where this happens.

0
source share
1 answer

If you need to know when this is done with the map display, this may help: GoogleMap.OnMapLoadedCallback

Callback interface for when the card has finished rendering. This happens after all the tiles necessary to display the map have been removed and all marking is completed. This event does not fire if the card never loads due to connection problems or if the card is constantly changing and never completes loading due to the constant interaction of the user with the card.

+1
source

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


All Articles