showInfoWindowOnClickedLocation method

Future<void> showInfoWindowOnClickedLocation(
  1. bool show
)

Enables/disables the info window on user-selected locations

The info window is shown by default when the user selects a location (by tapping on it)

Implementation

Future<void> showInfoWindowOnClickedLocation(bool show) {
  return MapcontrolPlatform.instance.showInfoWindowOnClickedLocation(show);
}