[Vuejs]-Implement fitBounds from GoogleMaps with Vuejs

-1👍

Warning: This is a hack.
Instead of:

this.map.fitBounds(this.bounds);

Try doing this:

this.$nextTick(() => {
  this.map.fitBounds(this.bounds);
});

Leave a comment