Skip to content

Commit

Permalink
use radians2Degrees const from vector_math
Browse files Browse the repository at this point in the history
  • Loading branch information
josxha committed Dec 7, 2023
1 parent 5fe0057 commit 4682a26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/geo/latlng_bounds.dart
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class LatLngBounds {
final lambda3 = lambda1 + math.atan2(by, math.cos(phi1) + bx);

// phi3 and lambda3 are actually in radians and LatLng wants degrees
return LatLng(radianToDeg(phi3), radianToDeg(lambda3));
return LatLng(phi3 * radians2Degrees, lambda3 * radians2Degrees);
}

/// Checks whether [point] is inside bounds
Expand Down
2 changes: 1 addition & 1 deletion lib/src/gestures/map_interactive_viewer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ class MapInteractiveViewerState extends State<MapInteractiveViewer>
return;
}

final currentRotation = radianToDeg(details.rotation);
final currentRotation = details.rotation * radians2Degrees;
if (_dragMode) {
_handleScaleDragUpdate(details);
} else if (InteractiveFlag.hasMultiFinger(_interactionOptions.flags)) {
Expand Down

0 comments on commit 4682a26

Please sign in to comment.