aves_mio/lib/widgets/common/map/leaflet/latlng_tween.dart
Fabio Micheluz 2c988f959b
Some checks are pending
Quality check / Flutter analysis (push) Waiting to run
Quality check / CodeQL analysis (java-kotlin) (push) Waiting to run
first commit
2026-02-19 13:25:23 +01:00

13 lines
339 B
Dart

import 'package:aves/widgets/common/map/leaflet/latlng_utils.dart';
import 'package:flutter/widgets.dart';
import 'package:latlong2/latlong.dart';
class LatLngTween extends Tween<LatLng?> {
LatLngTween({
required super.begin,
required super.end,
});
@override
LatLng? lerp(double t) => LatLngUtils.lerp(begin, end, t);
}