onLongPress method

Future<void> onLongPress(
  1. LatLng latLng
)

Implementation

Future<void> onLongPress(LatLng latLng) async {
  await _mapBloc.isMapReady.future;
  for (VoyagerProtocol protocol in _protocols) {
    protocol.onLongPress(latLng);
  }
}