onTap method

  1. @override
void onTap(
  1. PlatformLatLng position
)

Called when the map, not a specifc map object, is tapped.

Implementation

@override
void onTap(PlatformLatLng position) {
  streamController.add(
    MapTapEvent(mapId, _latLngFromPlatformLatLng(position)),
  );
}