Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a finished drawing event or callback in the Google Maps API v3?

I'd like to pop up a loading bar for when things are loading on a map.

like image 518
Peteris Avatar asked Sep 15 '25 07:09

Peteris


1 Answers

  // insert / show your loading bar
  // (or not if it's already visible in the DOM)

  // var map = new google.maps.Map(map_canvas, map_options);

  google.maps.event.addListenerOnce(map, 'idle', function() {
    // hide your loading bar
  });
like image 152
Adam Eberlin Avatar answered Sep 17 '25 21:09

Adam Eberlin