这里有一个代码:

<script>

$(function() {
    $( "#photo" ).resizable();
  $( "#photo" ).draggable({revert: 'invalid'});
    $( "#left" ).droppable({
      accept: '#photo',
      drop: function( event, ui ) {
        $( this )
          .find( "p" )
            .html( "Dropped!" );
      }
    });
  });
    </script>

并且此代码我必须在完全加载Google map 后运行,因此我需要为此代码“ Hook ” tilesloaded事件。

http://jsbin.com/ayugun/7/edit

但是该怎么做呢?

最佳答案

这是代码

google.maps.event.addListener(map, 'tilesloaded', function() {
  doWhatYouWant();
});

关于jquery-ui - 如何为Google Maps V3使用TilesLoaded事件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17122928/

10-12 02:46