trip_routing 0.0.4 copy "trip_routing: ^0.0.4" to clipboard
trip_routing: ^0.0.4 copied to clipboard

Flutter on-device trip-routing calculator package for multiple waypoints, optimized for food traffic.

example/main.dart

import 'package:trip_routing/trip_routing.dart';
import 'package:latlong2/latlong.dart';

void main() async {
  final waypoints = [
      const LatLng(50.77437074991441, 6.075419266272186),
      const LatLng(50.778183576682636, 6.088382934817764)
  ];

  final routing = TripService();
  try {
      final trip = await routing.findTotalTrip(waypoints, preferWalkingPaths: true);
      print('Calculated route: ${trip.route}');
      print('Distance: ${trip.distance} meters');
      print('Errors: ${trip.errors}');
  } catch (e) {
      print('Error calculating route: $e');
  }
}
1
likes
0
points
14
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter on-device trip-routing calculator package for multiple waypoints, optimized for food traffic.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

collection, flutter, http, latlong2

More

Packages that depend on trip_routing