flutter_map_directions 0.0.2
flutter_map_directions: ^0.0.2 copied to clipboard
A Flutter project package to show directions path on flutter_map
flutter_map_directions #
A flutter_map plugin for displaying directions between coordinates.
Usage #
Add flutter_map_directions to your pubspec.yaml:
dependencies:
flutter_map_directions: any // or latest version
Add the layer widget into FlutterMap:
Widget build(BuildContext context) {
return FlutterMap(
children: [
TileLayer(
urlTemplate: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png'
),
DirectionsLayer(
coordinates: []
), // <-- add layer here
],
);
}