We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77cf06d commit 89f6c2bCopy full SHA for 89f6c2b
lib/src/map/flutter_map_state.dart
@@ -156,14 +156,16 @@ class FlutterMapState extends MapGestureMixin
156
},
157
);
158
159
-
160
return LayoutBuilder(
161
builder: (BuildContext context, BoxConstraints constraints) {
162
//Update on layout change
163
setSize(constraints.maxWidth, constraints.maxHeight);
164
165
- if (options.bounds != null && !_hasFitInitialBounds) {
166
- final target = getBoundsCenterZoom(options.bounds!, options.boundsOptions);
+ if (options.bounds != null &&
+ !_hasFitInitialBounds &&
+ constraints.maxWidth != 0.0) {
167
+ final target =
168
+ getBoundsCenterZoom(options.bounds!, options.boundsOptions);
169
_zoom = target.zoom;
170
_center = target.center;
171
_hasFitInitialBounds = true;
0 commit comments