Abdelrahman Mostafa
Abdelrahman Mostafa
This code implements interactive layer tapping: ```dart class _MapScreenState extends State { final position = Position.named(lng: 24.9458, lat: 60.17180); MapboxMap? _mapboxMap; @override Widget build(BuildContext context) { return Scaffold( body: MapWidget(...
> > This code implements interactive layer tapping: > > class _MapScreenState extends State { > > final position = Position.named(lng: 24.9458, lat: 60.17180); > > MapboxMap? _mapboxMap; > >...
@Brez18 I agree that the queriedFeatures approach is the most suitable for identifying the feature being clicked on as it allows querying based on the touched coordinates. Regarding the sourceLayer...