setMapId method

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

Set Google Map Id for the cluster manager

Implementation

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