Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perf: use radians2Degrees const from vector_math #1763

Merged
merged 1 commit into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading