A Polyline with onTap
event listener
This is a plugin for flutter_map package
Add flutter_map and flutter_map_tappable_polyline to your pubspec:
dependencies:
flutter_map: any
flutter_map_tappable_polyline: any # or the latest version on Pub
Add it in you FlutterMap and configure it using TappablePolylineLayerOptions
.
Widget build(BuildContext context) {
return FlutterMap(
options: new MapOptions(
plugins: [
TappablePolylineMapPlugin(),
],
),
layers: [
TileLayerOptions(
urlTemplate: 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
subdomains: ['a', 'b', 'c'],
),
TappablePolylineLayerOptions(
// Will only render visible polylines, increasing performance
polylineCulling: true,
polylines: [
TaggedPolyline(
tag: "My Polyline", // An optional tag to distinguish polylines in callback
// ...all other Polyline options
),
],
onTap: (TaggedPolyline polyline) => print(polyline.tag),
onMiss: () => print("No polyline tapped"))
],
);
}