How to use tilesloaded event for google maps v3
问题 Here I have a code: <script> $(function() { $( "#photo" ).resizable(); $( "#photo" ).draggable({revert: 'invalid'}); $( "#left" ).droppable({ accept: '#photo', drop: function( event, ui ) { $( this ) .find( "p" ) .html( "Dropped!" ); } }); }); </script> and this code I must run after full loading google maps, so I need to "hook up" tilesloaded event for this code. http://jsbin.com/ayugun/7/edit But how to do that? 回答1: Here is the code google.maps.event.addListener(map, 'tilesloaded',