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
There is a little issue using the min/max zoom, due to a coding error in the following lines:
maxZoom: this.props.maxZoom,
minZoom: this.props.maxZoom,
(file index.js, lines 144/145)
Line 145 , needs to be changed in:
minZoom: this.props.minZoom,