I am using this library in my app to load the Google map on the web using this answer as a reference, I am able to add the marker on it but wondering how I can do the marker on tap action
Adding marker:
final _icon = jsMap.Icon()
..scaledSize = jsMap.Size(60, 60)
..url = 'https://www.freeiconspng.com/thumbs/pin-png/pin-png-9.png';
final marker = jsMap.Marker(
jsMap.MarkerOptions()
..position = latLng1
..map = map
..title = 'Test Title1'
..icon = _icon
);