Skip to content

Commit 89f6c2b

Browse files
authoredDec 11, 2022
Fix bounds/fitBounds not working on first display. (#1413)
* fix for broken bounds/fitBounds when it has a size of 0 (web ok, mobile not as faster) * dart formatting
1 parent 77cf06d commit 89f6c2b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎lib/src/map/flutter_map_state.dart

+5-3
Original file line numberDiff line numberDiff line change
@@ -156,14 +156,16 @@ class FlutterMapState extends MapGestureMixin
156156
},
157157
);
158158

159-
160159
return LayoutBuilder(
161160
builder: (BuildContext context, BoxConstraints constraints) {
162161
//Update on layout change
163162
setSize(constraints.maxWidth, constraints.maxHeight);
164163

165-
if (options.bounds != null && !_hasFitInitialBounds) {
166-
final target = getBoundsCenterZoom(options.bounds!, options.boundsOptions);
164+
if (options.bounds != null &&
165+
!_hasFitInitialBounds &&
166+
constraints.maxWidth != 0.0) {
167+
final target =
168+
getBoundsCenterZoom(options.bounds!, options.boundsOptions);
167169
_zoom = target.zoom;
168170
_center = target.center;
169171
_hasFitInitialBounds = true;

0 commit comments

Comments
 (0)