You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get rid of unused location variable in AnnounceMovement.js
Comment out / remove call to private leaflet map function in map-feature
In AnnounceMovement.announceBounds function
Change:
visible =
mapZoom <= this._map._layersMaxZoom &&
mapZoom >= this._map._layersMinZoom &&
this._map.totalLayerBounds.overlaps(mapBounds);
To:
visible =
mapZoom <= this._map.getMaxZoom() &&
mapZoom >= this._map.getMinZoom() &&
this._map.totalLayerBounds.overlaps(mapBounds);
Change: _map._layersMaxZoom usage to _map.getMaxZoom() everywhere
Get rid of unused location variable in AnnounceMovement.focusAnnouncement
function.
0 commit comments