loadend

type load
init
$( map selector ).geomap( {
  loadend: function( e, geo ) { }
} );
bind
$( map selector ).bind( "geomaploadend", function( e, geo ) { } );
} );

The loadend event triggers after a loadstart event when the geomap widget has finished loading all pending images. It only triggers once regardless of the number of images loaded. It will not be triggered again until after another loadstart event.

The geo argument is currently undefined for this event.

You can use this event to hide an indicator that your website is busy downloading images.