[Vuejs]-Leaflet map is not with full height size in Vuetify container on mobile

0👍

Proposed workaround to this Chrome specific behavior is to prevent Leaflet from focusing the map:

L.Control.include({
  _refocusOnMap: L.Util.falseFn
});

Source: How to prevent Leaflet map resizing on zoom in Vue/Vuetify app

Leave a comment