setMapId method

Future<void> setMapId(
  1. int mapId, {
  2. bool withUpdate = true,
})

Set Google Map Id for the cluster manager

Implementation

Future<void> setMapId(int mapId, {bool withUpdate = true}) async {
  _mapId = mapId;
  _zoom = await GoogleMapsFlutterPlatform.instance.getZoomLevel(mapId: mapId);
  if (withUpdate) updateMap();
}