Existe-t-il un listener pour gérer la carte complètement chargée ?
Dans mon cas, j'ai besoin d'obtenir des limites à partir de la carte, donc je l'ai fait de cette façon :
google.maps.event.addListener(this.map, "bounds_changed", this.mapLoaded);
mapLoaded: function() {
google.maps.event.clearListeners(this.map, "bounds_changed");
var bounds = this.map.getBounds();
this.collection.setBounds(bounds.getNorthEast(), bounds.getSouthWest());
this.collection.fetch();
},
Y a-t-il un moyen de ne pas pirater ?