Google Map displays events, can I view them?

Is there a way to watch the completion of rendering of fragments of a Google map?

In this regard, is there a way to check if all map tiles have been deleted?

This is based on the unresolved issue described here .

+1
source share
2 answers

Look here for part of your question.

Is there any way to check if all map tiles have been successfully rendered?

0
source

Listen to the tilesloaded event, for example

 google.maps.event.addListener( 'tilesloaded', function() { // tiles have been loaded }); 

I don't think there is any method in the API to ask if tiles have been loaded, but you can set a flag in your event listener.

+3
source

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


All Articles