From b763019e195af50baba397931e7acf9b318cab4a Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 11 May 2023 16:00:49 +0200 Subject: [PATCH] FlutterMap4 and the tile-layer rewrite moved some internal data representations to more conrcrete types. Mostly project now returns a typed CustomPoint. Use that stronger-typing more consequently. --- lib/src/map/flutter_map_state.dart | 39 ++++++++++++++++-------------- lib/src/map/map.dart | 7 ++++-- 2 files changed, 26 insertions(+), 20 deletions(-) diff --git a/lib/src/map/flutter_map_state.dart b/lib/src/map/flutter_map_state.dart index 0c569daa9..82d79db34 100644 --- a/lib/src/map/flutter_map_state.dart +++ b/lib/src/map/flutter_map_state.dart @@ -41,7 +41,7 @@ class FlutterMapState extends MapGestureMixin _rotation = options.rotation; _center = options.center; _zoom = options.zoom; - _pixelBounds = getPixelBounds(zoom); + _pixelBounds = getPixelBounds(); _bounds = _calculateBounds(); WidgetsBinding.instance.addPostFrameCallback((_) { @@ -142,7 +142,7 @@ class FlutterMapState extends MapGestureMixin _hasFitInitialBounds = true; } - _pixelBounds = getPixelBounds(zoom); + _pixelBounds = getPixelBounds(); _bounds = _calculateBounds(); _pixelOrigin = getNewPixelOrigin(_center); @@ -378,7 +378,7 @@ class FlutterMapState extends MapGestureMixin _center = newCenter; }); - _pixelBounds = getPixelBounds(_zoom); + _pixelBounds = getPixelBounds(); _bounds = _calculateBounds(); _pixelOrigin = getNewPixelOrigin(newCenter); @@ -498,9 +498,8 @@ class FlutterMapState extends MapGestureMixin return unproject(point); } - double getZoomScale(double toZoom, double? fromZoom) { + double getZoomScale(double toZoom, double fromZoom) { final crs = options.crs; - fromZoom = fromZoom ?? _zoom; return crs.scale(toZoom) / crs.scale(fromZoom); } @@ -516,19 +515,21 @@ class FlutterMapState extends MapGestureMixin Offset getOffsetFromOrigin(LatLng pos) { final delta = project(pos) - _pixelOrigin; - return Offset(delta.x.toDouble(), delta.y.toDouble()); + return Offset(delta.x, delta.y); } CustomPoint getNewPixelOrigin(LatLng center, [double? zoom]) { - final viewHalf = size / 2.0; - return (project(center, zoom) - viewHalf).round(); + final halfSize = size / 2.0; + return (project(center, zoom) - halfSize).round(); } - Bounds getPixelBounds(double zoom) { - final mapZoom = zoom; - final scale = getZoomScale(mapZoom, zoom); + Bounds getPixelBounds([double? zoom]) { + CustomPoint halfSize = size / 2; + if (zoom != null) { + final scale = getZoomScale(this.zoom, zoom); + halfSize = size / (scale * 2); + } final pixelCenter = project(center, zoom).floor().toDoublePoint(); - final halfSize = size / (scale * 2); return Bounds(pixelCenter - halfSize, pixelCenter + halfSize); } @@ -632,17 +633,19 @@ class FlutterMapState extends MapGestureMixin // it needs to be reversed (pointToLatLng), and sometimes we want to use // the same rotation to create a new position (latLngToScreenpoint). // counterRotation just makes allowances this for this. - CustomPoint rotatePoint(CustomPoint mapCenter, CustomPoint point, - {bool counterRotation = true}) { + CustomPoint rotatePoint( + CustomPoint mapCenter, + CustomPoint point, { + bool counterRotation = true, + }) { final counterRotationFactor = counterRotation ? -1 : 1; final m = Matrix4.identity() - ..translate(mapCenter.x.toDouble(), mapCenter.y.toDouble()) + ..translate(mapCenter.x, mapCenter.y) ..rotateZ(rotationRad * counterRotationFactor) - ..translate(-mapCenter.x.toDouble(), -mapCenter.y.toDouble()); + ..translate(-mapCenter.x, -mapCenter.y); - final tp = MatrixUtils.transformPoint( - m, Offset(point.x.toDouble(), point.y.toDouble())); + final tp = MatrixUtils.transformPoint(m, Offset(point.x, point.y)); return CustomPoint(tp.dx, tp.dy); } diff --git a/lib/src/map/map.dart b/lib/src/map/map.dart index d36be43e5..018a8b673 100644 --- a/lib/src/map/map.dart +++ b/lib/src/map/map.dart @@ -86,7 +86,10 @@ class MapControllerImpl implements MapController { CustomPoint rotatePoint(CustomPoint mapCenter, CustomPoint point, {bool counterRotation = true}) { - return _state.rotatePoint(mapCenter, point, - counterRotation: counterRotation); + return _state.rotatePoint( + mapCenter.toDoublePoint(), + point.toDoublePoint(), + counterRotation: counterRotation, + ); } }